Di seguito è mostrato uno snippet di codice in cui provo a fare riferimento al mio bean ApplicationProperties. Quando lo faccio riferimento dal costruttore è nullo, ma quando viene fatto riferimento da un altro metodo va bene. Fino ad ora non ho avuto problemi ad utilizzare questo bean autowired in altre classi. Ma questa è la prima volta che provo a usarlo nel costruttore di un'altra classe.
Nello snippet di codice sottostante applicationProperties è nullo quando viene chiamato dal costruttore, ma quando viene fatto riferimento nel metodo convert non lo è. Cosa mi manca
@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();
...
Di seguito è riportato uno snippet da 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");
}