SpringBoot 快速入门 (二)

SpringBoot快速入门

1.创建一个Maven工程

名为”springboot-helloworld” 类型为Jar工程项目

2.pom文件引入依赖


		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的话是不需要此配置的。

3.编写HelloWorld服务

创建package命名为com.rp.springboot.controller
创建HelloWorldController类,内容如下

@RestController
public class HelloWorldController
{
    @GetMapping("/hello")
    public String hello(){
        return "helloworld";
    }
}

4.@RestController

在上加上RestController 表示修饰该Controller所有的方法返回JSON格式,直接可以编写Restful接口

@RestController = @Controller+@ResponseBody

5.主启动类:

@SpringBootApplication
public class HelloworldApplication {
	public static void main(String[] args) {
		SpringApplication.run(HelloworldApplication.class, args);
	}
}

6.SpringBoot启动方式

@SpringBootApplication

@SpringBootApplication 被 @Configuration、@EnableAutoConfiguration、@ComponentScan 注解所修饰,换言之 Springboot 提供了统一的注解来替代以上三个注解
扫包范围:在启动类上加上@SpringBootApplication注解,当前包下和子包下所有的类都可以扫到。

##7.SpringApplication.run(HelloworldApplication.class, args)

标识为启动类

8.@EnableAutoConfiguration

注解:作用在于让 Spring Boot 根据应用所声明的依赖来对 Spring 框架进行自动配置.这个注解告诉Spring Boot根据添加的jar依赖猜测你想如何配置Spring。由于spring-boot-starter-web添加了Tomcat和Spring MVC,所以auto-configuration将假定你正在开发一个web应用并相应地对Spring进行设置。

9.SpringBoot 其他启动方式

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

你可能感兴趣的:(SpringBoot,springboot)