Spring靜態屬性的注入


應用場景:工具類的靜態方法使用了service注入

1. xml的init-method方式

<bean id="SecurityUtil" class="com.*.*.util.SecurityUtil" init-method="init">
        <property name="propertyConfigurerTmp" ref="propertyConfigurer"/>
</bean>
    
<bean id="propertyConfigurer"class="com.*.*.service.PropertyConfigurer"/>
public class SecurityLogic {
    private PropertyConfigurer propertyConfigurerTmp;
    
private static PropertyConfigurer propertyConfigurer;

    public void init() {
        SecurityLogic.propertyConfigurer = propertyConfigurerTmp;
    }

    public static void encrypt(String param) throws Exception {
        String encryptType=propertyConfigurer.getProperty("encryptType");
        //todo
    }
}

 

2. 注解@PostConstruct方式

@Component
public class SecurityLogic {

    @Autowired
    private PropertyConfigurer propertyConfigurerTmp;
    
    private static PropertyConfigurer propertyConfigurer;

    @PostConstruct
    public void init() {
        SecurityLogic.propertyConfigurer = propertyConfigurerTmp;
    }

    public static void encrypt(String param) throws Exception {
        String encryptType=propertyConfigurer.getProperty("encryptType");
        //todo
    }
}

 

3. set方法上面添加注解方式

@Component
public class SecurityLogic {

    private static PropertyConfigurer propertyConfigurer;

    @Autowired
    public void setPropertyConfigurer(PropertyConfigurer propertyConfigurer) {
        SecurityLogic.propertyConfigurer = propertyConfigurer;
    }

    public static void encrypt(String param) throws Exception {
        String encryptType=propertyConfigurer.getProperty("encryptType");
        //todo
    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM