spring中@ConstructorProperties的作用

来源:互联网 发布:医疗器械软件关税 编辑:程序博客网 时间:2024/05/21 19:50
spring中@ConstructorProperties的作用


以具体实例来解释:


下面是写的HelloService和NewHello的Bean


public class HelloService {
    public String sayHello(){
        return "hello";
    }
}


import java.beans.ConstructorProperties;


public class NewHello {
    private HelloService service;


    private String hello;


    //@ConstructorProperties({"service","hello"})
    public NewHello(HelloService service, String hello) {
        this.service = service;
        this.hello = hello;
    }


    public void sayNewHello(){
        System.out.println("new hello");
        System.out.println(service.sayHello());
    }


}


对应的xml文件中的配置为:


    <bean id="helloService" class="com.lyk.service.HelloService"/>


    <bean id="newHello" class="com.lyk.service.NewHello">
        <constructor-arg name="hello" value="hello"/>
        <constructor-arg name="service" ref="helloService"/>
    </bean>

使用@ConstructorProperties注解时,可以通过制定变量名来改变xml文件中constructor-arg的 name名字,比如
@ConstructorProperties({"service1","hello2"}),在xml文件中要对应的配置为
    <bean id="newHello" class="com.lyk.service.NewHello">
        <constructor-arg name="hello1" value="hello"/>
        <constructor-arg name="service1" ref="helloService"/>
    </bean>


并不推荐这种使用方法,只是要弄明白这个注解的意思。
原创粉丝点击