使用构造函数参数添加tomee.xml资源

时间:2013-12-18 11:06:41

标签: jndi openejb tomee

尝试在tomee.xml中添加“java.net.URL”资源,但参数未传递给构造函数。这是tomee.xml的补充:

    <Resource id="someJndiName" class-name="java.net.URL" factory-name="URL" constructor="spec">
      spec http://google.com
    </Resource>

这导致:

    INFO: Creating Resource(id=someJndiName)
    Dec 18, 2013 5:10:12 AM org.apache.openejb.util.OpenEJBErrorHandler handleUnknownError
    SEVERE: FATAL ERROR: Unknown error in Assembler.  Please send the following stack trace and this message to users@openejb.apache.org :
     java.lang.NullPointerException
       at org.apache.xbean.recipe.ReflectionUtil.toParameterList(ReflectionUtil.java:1026)
       at org.apache.xbean.recipe.ReflectionUtil.findStaticFactory(ReflectionUtil.java:811)
       at org.apache.xbean.recipe.ObjectRecipe.findFactory(ObjectRecipe.java:538)
       at org.apache.xbean.recipe.ObjectRecipe.internalCreate(ObjectRecipe.java:274)
       at org.apache.xbean.recipe.AbstractRecipe.create(AbstractRecipe.java:96)

基于OpenEJB/TomEE Resources: how does it work?,代码使用反射来调用构造函数,并且应该传递参数,但这似乎不是这里的情况。这是一个错误,还是有另一种方法将参数传递给构造函数?

我尝试在“%TomEE%/ conf / system.properties”中添加一个条目,但它没有做任何更改。

    someJndiName.spec=http://google.com

我尝试使用URL的3参数构造函数,结果相同。

    <Resource id="someJndiName" class-name="java.net.URL" factory-name="URL" constructor="protocol, host, file">
      protocol http
      host google.com
      file 
    </Resource>

我目前需要将“java.net.URL”对象添加到服务器资源,但是能够使用这种通用方法添加任意对象将非常有用。

是否需要为“java.net.URL”创建一些处理程序类才能作为TomEE资源进行处理?

1 个答案:

答案 0 :(得分:0)

您还有这个问题吗?这在TomEE 7.1.0中有效。

resources.xml

<resources>
    <Resource id="myURL"
              class-name="java.net.URL"
              constructor="spec">
        spec http://google.com
    </Resource>
</resources>

Application.java

package com.test.application;

import lombok.extern.slf4j.Slf4j;

import javax.annotation.PostConstruct;
import javax.annotation.Resource;
import javax.ejb.Startup;
import javax.enterprise.context.ApplicationScoped;
import java.net.URL;

@Slf4j
@Startup
@ApplicationScoped
public class Application {

    @Resource(name = "myURL")
    private URL url;

    @PostConstruct
    private void init() {
        log.info("URL={}", url);
    }
}