摘要:
SpringBoot的配置文件有两种,一种是.yaml文件一种是.properties文件,这两种文件的语法结构不一样,并且名字必须是application,如果是其他名字必须使用@PropertySource(value ="文件名")进行引入。 application.yaml语法结构:key: 阅读全文
摘要:
首先针对SpringBoot的测试类,2.2版本之前和2.2版本之后是不一样的,在2.2版本之前需要贴注解@SpringBootTest和@RunWith(SpringRunner.class)需要在Spring容器环境下进行测试,因为@Test导包的是org.junit.Test,而 在2.2版本 阅读全文