[컴][웹] Spring 에서 .property 이용 방법




Example

// mysetting.properties
conf.val1 = 123
conf.val2 = 12333

util.param1 = 1111
util.param2 = 2222


...
<context:property-placeholder location="classpath:/mysetting.properties"/>
<bean id="setConfig" class="com.namh.SetConfig">
    <property name="val1"><value>${conf.val1}</value></property>
    <property name="val2"><value>${conf.val2}</value></property>  
</bean>

<bean id="setUtil" class="com.namh.SetUtil">
    <constructor-arg>
       <value>${util.param1}</value>
    </constructor-arg>
    <constructor-arg>
        <value>${util.param2}</value>
    </constructor-arg>
</bean>
...

// SetConfig.java
public class SetConfig{
    private int val1;
    private int val2;
   
   
    public int getVal1() {
        return val1;
    }
    public void setVal1(int val1) {
        this.val1 = val1;
    }
    public int getVal2() {
        return val2;
    }
    public void setVal2(int val2) {
        this.val2 = val2;
    }
   
}

// SetUtil.java
public class SetUtil{
    private int val1;
    private int val2;
   
    public SetUtil(int val1, int val2){
        this.val1 = val1;
        this.val2 = val2;
    }

   
}



See Also


  1. Rednics Blog :: Spring Property 가지고 놀기 2 - <util:properties> : util:properties 를 이용해서 .property 를 가져온다.
  2. Rednics Blog :: Spring Property 가지고 놀기 3 - <util:properties> : .property 파일 안 만들고 property 사용하기



댓글 없음:

댓글 쓰기