springboot 2.0版本使用配置

依赖

        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        

yml文件配置

projecturl:
  name: yingran

config类:

@Component
@Data
@ConfigurationProperties(prefix = "projecturl")
public class ConfigTest {
    private String name;
}

测试类:

@RunWith(SpringRunner.class)
@SpringBootTest
@Slf4j
public class testTest {


    @Autowired
    private ConfigTest configTest;
    @Test
    public void myTest(){
        log.info(configTest.getName());
    }

}

你可能感兴趣的:(springboot 2.0版本使用配置)