SpringBoot 系列一 (springboot项目的创建)

    xiaoxiao2022-07-04  110

    1.登陆spring官网   https://spring.io/projects/spring-boot/  下拉点击Spring Initializr

     

     

    2.基础包配置,此处我只用Web所以只选择Web。

    3.点击下图,生成项目,导入IDE或者Eclipse即可使用(提醒此处需要配置好maven仓库)

     

    4.创建controller

    @Controller @RequestMapping("/test") public class TestController { @ResponseBody @RequestMapping("/index") public String index(String words){ return words; } }

    项目目录:

     

    5.点击运行项目,并访问   http://localhost:8080/test/index?words="我是中兴人"

     

    最新回复(0)