1

我的架构:
GlassFish Server Open Source Edition 3.1.2.2 (5)
Java EE 6
Eclipse IDE

我创建了一个 EJB 计时器,它打印一条日志消息:

@Startup
@Singleton
public class ProgrammaticalTimerEJB {
    private final Logger log = Logger.getLogger(getClass().getName());

    @Resource(name = "properties/mailconfig")
    private Properties mailProperties;

    @Resource
    private TimerService timerService;

    @PostConstruct
    public void createProgrammaticalTimer() {
        log.log(Level.INFO, "ProgrammaticalTimerEJB initialized");
        ScheduleExpression everyTenSeconds = new ScheduleExpression().second("*/10").minute("*").hour("*");
        timerService.createCalendarTimer(everyTenSeconds, new TimerConfig("passed message " + new Date(), false));
    }

    @Timeout
    public void handleTimer(final Timer timer) {
        log.info(new Date().toGMTString() + " Programmatical: " + mailProperties.getProperty("to"));
    }
}

此类注入我的自定义 JNDI 资源:

    @Resource(name = "properties/mailconfig")
    private Properties mailProperties;

Eclipse 控制台:

INFO: 2 Aug 2013 10:55:40 GMT Programmatical: tim.herold@mylocal.de
INFO: 2 Aug 2013 10:55:50 GMT Programmatical: tim.herold@mylocal.de
INFO: 2 Aug 2013 10:56:00 GMT Programmatical: tim.herold@mylocal.de

Glassfish 设置

asadmin> get server.resources.custom-resource.properties/mailconfig.property

server.resources.custom-resource.properties/mailconfig.property.to=tim.herold@mylocal.de

Command get executed successfully.
asadmin>



在此处输入图像描述

现在我想在应用程序运行时更改此属性值。通过 Adminconsole 或 Asadmin 编辑它不起作用。这是可能的,还是有其他/更好的解决方案?

提前谢谢了

4

2 回答 2

6

有可能解决您的问题:

如果应用程序使用resource injection,则 GlassFish Server 调用JNDI API,并且应用程序不需要这样做。

一旦注入,属性就不会重新加载,并且默认情况下没有直接重新加载资源的可能性。

但是,应用程序也可以通过直接调用JNDI API.

在使用这些属性之前,您需要JNDI Lookup为您Custom Resoruce的 计划或每次执行一次。这段代码对我有用:

@Timeout
public void handleTimer(final Timer timer) throws IOException, NamingException {
    Context initialContext = new InitialContext();
    mailProperties = (Properties)initialContext.lookup("properties/mailconfig");
    log.info(new Date().toGMTString() + " Programmatical: " + mailProperties.getProperty("to"));        
}
于 2013-08-04T18:34:58.597 回答
1

据我了解,mailProperties 资源是在容器实例化 EJB 之后注入的,这在bean的生命周期中只发生一次。

因此,他无法获得期货属性的变化。

另一种方法是尝试在 @Timeout 方法中查找 mailProperties。

于 2013-08-03T01:42:29.047 回答