其他分享
首页 > 其他分享> > 从0开始做外卖侠优惠券系统之1.1---输出hellword

从0开始做外卖侠优惠券系统之1.1---输出hellword

作者:互联网

从0开始做外卖侠优惠券系统之1.1—输出hellword

1.在controller文件夹下新建一个一个IndexController类
在这里插入图片描述
2.然后使用@RequestMapping来映射请求,一般这个类名是什么我们就映射成什么,例如IndexController,映射的时候我们就用@RequestMapping("/index")

package com.june.cps.controller;

import org.springframework.web.bind.annotation.RequestMapping;

@RequestMapping("/index")
public class IndexController {

}

3.然后我们再新建一个index方法,然后在index方法中输出helloworld

package com.june.cps.controller;

import org.springframework.web.bind.annotation.RequestMapping;

@RequestMapping("/index")
public class IndexController {
    public void index(){
        System.out.printf("hello world");
    }
}

4.然后必须要注意的一点是必须要加上@RestController否则会报404的错误。

package com.june.cps.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/index")
public class IndexController {
    @RequestMapping("/index")
    public String index(){
        System.out.printf("hello world");
        return "hello world";
    }
}

5.最后,使用localhost:8080/index/index访问
在这里插入图片描述

标签:index,1.1,web,---,外卖,import,IndexController,public,RequestMapping
来源: https://blog.csdn.net/qq_41240287/article/details/114922909