springboot讲很多配置文件进行了统一管理
springboot会自动在src/main/resources目录下找application.properties或者application.yml配置文件
注意
properties配置文件的优先级高于yml。在properties文件中配置了server.port = 8080,同时在yml中配置server.port: 8081,springboot将使用8080作为端口号。
入口类
入口类要放在包的最外层,一遍能够扫描到所有子包里的类
package com.springboot.demo;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)//参数化运行器,配合@Paramters使用junit的参数化功能。简单的junit测试不需要
@SpringBootTest
public class DemoApplicationTests {
@Test
public void contextLoads() {
System.out.println("测试===================");
}
}
POM文件
pom.xml文件只要是存放依赖信息
spring-boot-start-parent:是一个特殊的starter,用来提供相关的maven默认依赖,使用它之后,常用的包依赖可以省去version标签
spring-boot-start-web:只要将其加入项目的Maven依赖中,就获得了可执行的web应用,不需要做任何web配置,便能获得web服务
spring-boot-starter-test:测试相关
spring-boot-maven-plugin:maven插件,能够将sb应用打包为jar或者war