SpringBoot第一节
Posted 听风忆雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot第一节相关的知识,希望对你有一定的参考价值。
1.创建一个StringInitializr项目(步骤如下)
(1)
(2)
(3)
(4)
2、DemoApplication类
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; @SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}) public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }
3、创建Controller类
package com.example.demo.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class sss { @RequestMapping("/hello") @ResponseBody public String deom(){ return "Hello Word!!!"; } }
4、启动控制台DemoApplication类,运行结果如下
5、启动页面,运行结果如下
以上是关于SpringBoot第一节的主要内容,如果未能解决你的问题,请参考以下文章