우리는 일반적으로 자주 변경되는 사항을 구성 파일에 넣습니다.
예를 들어 구성 파일 application.properties
에 미리 적어둔 포트 번호 server.port=8080
등이 있고, 그 외 일반적인 것에는 데이터베이스 연결 정보 등이 포함되어 있습니다. application.properties
里的端口号server.port=8080
,另外常见的还有数据库的连接信息等等。
那么,我的数据库连接信息放在配置文件里,我要使用的话肯定得去解析配置文件,解析出的内容在 bean 里面去使用。
整个场景其实就是把配置文件里的所有配置,绑定到 java bean 里面。
要完成这个场景,基于 java 原生代码编写还是有点麻烦的。通常会做一个封装,读取到properties文件中的内容,并且把它封装到JavaBean中:
public class getProperties { public static void main(String[] args) throws FileNotFoundException, IOException { Properties pps = new Properties(); pps.load(new FileInputStream("a.properties")); Enumeration enum1 = pps.propertyNames();//得到配置文件的名字 while(enum1.hasMoreElements()) { String strKey = (String) enum1.nextElement(); String strValue = pps.getProperty(strKey); System.out.println(strKey + "=" + strValue); //封装到JavaBean ... ... } }
这里就是使用Properties
类来加载配置文件a.properties
,然后遍历配置文件中的每一个k-v
,获取之后就可以用到对应的地方。
在 springboot 中简化了这个过程,这就是配置绑定。
通过使用注解@ConfigurationProperties
来完成配置绑定,注意需要结合@Component
使用。
新建一个组件Car
,有2个属性分别是品牌和价格:
@Componentpublic class Car { private String brand; private Integer price;// get set tostring 就不贴了
在配置文件application.properties
,设置一些属性值,比如:
mycar.brand=QQmycar.price=9999
使用@ConfigurationProperties
注解,加到组件上:
@Component@ConfigurationProperties(prefix = "mycar")public class Car { private String brand; private Integer price;... ...
传进去的 prefix 是配置文件里的前缀,这里就是 mycar。
现在来测试一下是否绑定成功,在之前的HelloController
继续增加一个控制器方法:
@RestControllerpublic class HelloController { @Autowired Car car; @RequestMapping("/car") public Car car() { return car; } @RequestMapping("/hello") public String Hello() { return "Hello SpringBoot2 你好"; }}
部署一下应用,浏览器访问http://localhost:8080/car
:
绑定成功。
除上述方法之外,还可以使用@EnableConfigurationProperties
+ @ConfigurationProperties
的方式来完成绑定。
注意,@EnableConfigurationProperties
注解要使用在配置类上,表示开启属性配置的功能:
//@ConditionalOnBean(name = "pet1")@Import({User.class, DBHelper.class})@Configuration(proxyBeanMethods = true)@ImportResource("classpath:beans.xml") //配置文件的类路径@EnableConfigurationProperties(Car.class) //开启属性配置的功能public class MyConfig { @Bean("user1") public User user01(){ User pingguo = new User("pingguo",20); pingguo.setPet(tomcatPet()); return pingguo; } @Bean("pet22") public Pet tomcatPet(){ return new Pet("tomcat"); }}
@EnableConfigurationProperties(Car.class)
传入要开启配置的类,这可以自动的把 Car 注册到容器中,也就是说之前 Car 上的@Component
就不需要了。
//@Component@ConfigurationProperties(prefix = "mycar")public class Car { private String brand; private Integer price;
重新部署访问下地址,依然可以。
关于第二种的使用场景,比如这里的 Car 是一个第三方包里的类,但是人家源码没有加@Component
注解,这时候就可以用这种方式进行绑定。
最后,要记住当使用@ConfigurationProperties(prefix = "mycar")
这个配置绑定时,是跟 springboot 核心配置文件 application.properties
Properties
클래스를 사용하여 a.properties 구성 파일을 로드합니다.
를 입력하고, 구성 파일에 있는 각 k-v
를 순회하여 얻은 후 해당 위치에서 사용할 수 있습니다. 🎜🎜이 프로세스는 구성 바인딩인 springboot에서 단순화됩니다. 🎜@ConfigurationProperties
주석을 사용하여 완료됩니다. 이 주석은 @Component
와 함께 사용해야 합니다. 🎜🎜브랜드와 가격이라는 두 가지 속성을 가진 새 구성요소 Car
를 만듭니다. 🎜rrreee🎜구성 파일 application.properties
에서 다음과 같은 일부 속성 값을 설정합니다. 🎜rrreee 🎜@ConfigurationProperties
주석을 사용하여 구성요소에 추가하세요. 🎜rrreee🎜전달된 접두사는 구성 파일의 접두사이며 여기서는 mycar입니다. 🎜HelloController
에 컨트롤러 메서드를 추가합니다. 🎜rrreee🎜 애플리케이션을 배포하고 브라우저 에 액세스합니다. //localhost:8080/car
:🎜🎜🎜🎜바인딩에 성공했습니다. 🎜@EnableConfigurationProperties
+ @ConfigurationProperties
를 사용하여 바인딩을 완료할 수도 있습니다. 🎜🎜속성 구성 활성화 기능을 나타내기 위해 구성 클래스에서 @EnableConfigurationProperties
주석을 사용해야 합니다. 🎜rrreee🎜@EnableConfigurationProperties(Car.class)
전달 클래스를 활성화할 구성을 사용하면 Car를 컨테이너에 자동으로 등록할 수 있습니다. 즉, 이전 Car의 @Component
가 더 이상 필요하지 않음을 의미합니다. 🎜rrreee🎜재배포하고 다음 주소에 접속해도 여전히 작동합니다. 🎜🎜🎜🎜장 소개 예를 들어 Car는 타사 패키지의 클래스이지만 소스 코드에는 @Component
주석이 없습니다. 이 방법. 🎜🎜마지막으로, @ConfigurationProperties(prefix = "mycar")
를 사용할 때 이 구성은 springboot 핵심 구성 파일 application.properties
의 내용에 바인딩된다는 점을 기억하세요. 바인딩 관계 확립된. 🎜위 내용은 SpringBoot2 기본 주석 @ConfigurationProperties가 바인딩을 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!