नीचे दिखाया गया कोड का एक स्निपेट है जहां मैं अपने ApplicationProperties सेम की कोशिश करता हूं और संदर्भ देता हूं। जब मैं इसे कंस्ट्रक्टर से संदर्भित करता हूं तो यह अशक्त होता है, लेकिन जब दूसरी विधि से संदर्भित किया जाता है तो यह ठीक है। अब तक मुझे अन्य वर्गों में इस स्वत: प्राप्त सेम का उपयोग करने में कोई समस्या नहीं हुई है। लेकिन यह पहली बार है जब मैंने इसे दूसरे वर्ग के कंस्ट्रक्टर में इस्तेमाल करने की कोशिश की है।
कोडप्रोपरेट्टी के नीचे कोड स्निपेट में कंस्ट्रक्टर से कॉल किए जाने पर शून्य होता है लेकिन कन्वर्ट विधि में संदर्भित होने पर यह नहीं है। मैं क्या खो रहा हूँ
@Component
public class DocumentManager implements IDocumentManager {
private Log logger = LogFactory.getLog(this.getClass());
private OfficeManager officeManager = null;
private ConverterService converterService = null;
@Autowired
private IApplicationProperties applicationProperties;
// If I try and use the Autowired applicationProperties bean in the constructor
// it is null ?
public DocumentManager() {
startOOServer();
}
private void startOOServer() {
if (applicationProperties != null) {
if (applicationProperties.getStartOOServer()) {
try {
if (this.officeManager == null) {
this.officeManager = new DefaultOfficeManagerConfiguration()
.buildOfficeManager();
this.officeManager.start();
this.converterService = new ConverterService(this.officeManager);
}
} catch (Throwable e){
logger.error(e);
}
}
}
}
public byte[] convert(byte[] inputData, String sourceExtension, String targetExtension) {
byte[] result = null;
startOOServer();
...
नीचे ApplicationProperties से स्निपेट है ...
@Component
public class ApplicationProperties implements IApplicationProperties {
/* Use the appProperties bean defined in WEB-INF/applicationContext.xml
* which in turn uses resources/server.properties
*/
@Resource(name="appProperties")
private Properties appProperties;
public Boolean getStartOOServer() {
String val = appProperties.getProperty("startOOServer", "false");
if( val == null ) return false;
val = val.trim();
return val.equalsIgnoreCase("true") || val.equalsIgnoreCase("on") || val.equalsIgnoreCase("yes");
}