Spring Boot 入门

2018-10-11 10:00:25来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一、Spring Boot 入门

环境约束

–jdk1.8:Spring Boot 推荐jdk1.7及以上;java version "1.8.0_112"

–maven4.x:maven 3.3以上版本;Apache Maven 3.3.9

–IntelliJIDEA2017:IntelliJ IDEA 2017.2.2 x64、STS

统一环境;

编写第一HelloWorld程序

 SpringBoot的主程序:

package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {

public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
SpringBoot的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;

@ResponseBody
@Controller
public class HelloWolrd {
@RequestMapping("/hello")
public String hello(){
return "hello";
}
}

这样我们就可以运行程序了,程序跑起来之后在浏览器中输入LocalHost:8080/hello就可以进行访问了
下图就是成功后的样子

 

我的时候要注意一下文件的位置,你建立的Controller只能在DemoApplication 也就是SpringBoot的主程序同一层级或者下一层级,只有这样能执行。

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringBoot之HelloWorld仔细分析

下一篇:SpringBoot(二)CentOS部署SpringBoot项目从0到1