名为”springboot-helloworld” 类型为Jar工程项目
org.springframework.boot
spring-boot-starter-parent
2.0.5.RELEASE
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-maven-plugin
spring-boot-starter-parent
作用
在pom.xml中继承或者引入spring-boot-start-parent,spring官方的解释叫什么stater poms,它可以提供dependency management,也就是说依赖管理,引入以后在申明其它dependency的时候就不需要version了。
spring-boot-starter-web
作用
springweb 核心组件
spring-boot-maven-plugin
作用
如果我们要直接Main启动spring,那么以下plugin必须要添加,否则是无法启动的。如果使用maven 的spring-boot:run的话是不需要此配置的。
创建package命名为com.rp.springboot.controller
创建HelloWorldController类,内容如下
@RestController
public class HelloWorldController
{
@GetMapping("/hello")
public String hello(){
return "helloworld";
}
}
在上加上RestController 表示修饰该Controller所有的方法返回JSON格式,直接可以编写Restful接口
@RestController = @Controller+@ResponseBody
@SpringBootApplication
public class HelloworldApplication {
public static void main(String[] args) {
SpringApplication.run(HelloworldApplication.class, args);
}
}
@SpringBootApplication
@SpringBootApplication 被 @Configuration、@EnableAutoConfiguration、@ComponentScan 注解所修饰,换言之 Springboot 提供了统一的注解来替代以上三个注解
扫包范围:在启动类上加上@SpringBootApplication注解,当前包下和子包下所有的类都可以扫到。
##7.SpringApplication.run(HelloworldApplication.class, args)
标识为启动类
注解:作用在于让 Spring Boot 根据应用所声明的依赖来对 Spring 框架进行自动配置.这个注解告诉Spring Boot根据添加的jar依赖猜测你想如何配置Spring。由于spring-boot-starter-web添加了Tomcat和Spring MVC,所以auto-configuration将假定你正在开发一个web应用并相应地对Spring进行设置。
Springboot默认端口号为8080
@ComponentScan(basePackages = "com.rp.springboot.controller")//控制器扫包范围
@EnableAutoConfiguration
public class HelloworldApplication2 {
public static void main(String[] args) {
SpringApplication.run(HelloworldApplication2.class, args);
}
}
启动主程序,打开浏览器访问http://localhost:8080/hello,可以看到页面输出Hello World
源码地址:https://github.com/ruiace/helloworld.git