在 GlassFish 4.0 中部署期间修改 ejb-jar 的配置属性.xml



我有一个 ejb-jar.xml其中包含我的一个 MDB 的配置信息。其中有一个配置:

 <activation-config-property>
        <activation-config-property-name>addressList</activation-config-property-name>
        <activation-config-property-value>mq://test.server.uk:7676</activation-config-property-value>
</activation-config-property>

由于我的项目是构建和打包的,然后分发给用户,我需要能够确保可以修改此值,因为用户具有不同的服务器地址。

目前,我可以选择在属性文件中设置地址。无论如何,我可以在玻璃鱼 4.0 上部署期间使用属性值修改此 xml?

如果不是,我是否必须在每次有人想要应用程序并重新构建它时设置值?

我愿意将其他配置放在只需要动态的位置,以便用户可以在属性文件中设置服务器地址。

您可以尝试的一件事是使用@AroundConstruct拦截器在运行时在 MDB 上设置值。值得注意的是,虽然可以在 ejb-jar 中使用占位符.xml,但它主要依赖于容器,并且明显缺乏关于如何为 Glassfish 完成的阅读材料应该引起您的担忧。让我们试试这个:

  1. 在 MDB 上定义拦截器:

    @MessageDriven
    @Interceptors(AddressListInterceptor.class)
    public class YourMDB
    
  2. 定义拦截器

    public class AddressListInterceptor {
        @AroundConstruct
        private void begin(InvocationContext iCtxt) {
            /**load your property prior to this point */
    
            ActivationConfigProperty addressList = new ActivationConfigProperty{
                                                      public String propertyName(){
                                                        return "addressList";
                                                      }
                                                      public String propertyValue(){
                                                        return theAddressList;
                                                       }
                                     public Class<? extends Annotation> annotationType(){
                                          return ActivationConfigProperty.class;
                                      }                 
                                                   };
              try {
                    /**get the annotations, with the intention of adding yours (addressList) to the array using the method demonstrated in 
                      http://stackoverflow.com/a/14276270/1530938  */
                   Annotations[] annotations = iCtxt.getClass().getAnnotations(); 
                    iCtxt.proceed(); //this will allow processing to continue as normal
               } catch (Exception ex) {
               } 
       }
    

除了不幸需要自己扫描和修改注释之外,这种方法给你买的是,你可以在 bean 被初始化之前进入 MDB 的生命周期并修改注释的值。当 bean 投入使用时,它将采用您设置的值,并且一切都应该井井有条。

我找到了一种在 glassfish 4.0 中修改地址列表的简单方法。此解决方案允许仍使用其余@ActivationConfigProperty。对于我而言,当用户使用安装脚本进行安装时,我可以运行以下命令:

asadmin server.jms-service.type = REMOTE
asadmin set configs.config.server-config.jms-service.jms-host.default_JMS_host.host=
"testserver.test.te.uk" 
asadmin restart-domain

将缺省 JMS 主机设置为键入 REMOTE,然后告诉代理使用缺省 JMS 主机中定义的地址。

然后,使用 asadmin set 命令设置主机地址。

完成此操作后,您需要重新启动眼镜鱼。

这显然取决于玻璃鱼容器,但这就是我所需要的。

相关内容

  • 没有找到相关文章

最新更新