【发布时间】:2016-09-23 23:01:14
【问题描述】:
我有一个spring应用程序配置为在xml上有一个属性文件配置
<context:property-placeholder location="classpath:app.properties"/>
我的类使用@Value 注释从这里查找值。 但是,每次我在没有 java 应用程序服务器(Websphere)的情况下运行 junit 测试时,都需要一段时间来查找值,例如每个字段需要 1 秒。 打开调试模式显示它是导致它的 JNDI 查找。
2016-09-23 17:50:29,462{ISO8601 [P=25904:O=0:CT] org.springframework.core.env.PropertySourcesPropertyResolver DEBUG - Searching for key 'spring.liveBeansView.mbeanDomain' in [servletConfigInitParams]
2016-09-23 17:50:29,462{ISO8601 [P=25904:O=0:CT] org.springframework.core.env.PropertySourcesPropertyResolver DEBUG - Searching for key 'spring.liveBeansView.mbeanDomain' in [servletContextInitParams]
2016-09-23 17:50:29,462{ISO8601 [P=25904:O=0:CT] org.springframework.core.env.PropertySourcesPropertyResolver DEBUG - Searching for key 'spring.liveBeansView.mbeanDomain' in [jndiProperties]
2016-09-23 17:50:29,462{ISO8601 [P=25904:O=0:CT] org.springframework.jndi.JndiTemplate DEBUG - Looking up JNDI object with name [java:comp/env/spring.liveBeansView.mbeanDomain]
Sep 23, 2016 5:50:29 PM null null
**SEVERE: javaAccessorNotSet**
2016-09-23 17:50:29,463{ISO8601 [P=25904:O=0:CT] org.springframework.jndi.JndiLocatorDelegate DEBUG - Converted JNDI name [java:comp/env/spring.liveBeansView.mbeanDomain] not found - trying original name [spring.liveBeansView.mbeanDomain]. javax.naming.ConfigurationException: Name space accessor for the java: name space has not been set. Possible cause is that the user is specifying a java: URL name in a JNDI Context method call but is not running in a J2EE client or server environment.
2016-09-23 17:50:29,463{ISO8601 [P=25904:O=0:CT] org.springframework.jndi.JndiTemplate DEBUG - Looking up JNDI object with name [spring.liveBeansView.mbeanDomain]
2016-09-23 17:50:30,474{ISO8601 [P=25904:O=0:CT] org.springframework.jndi.JndiPropertySource DEBUG - JNDI lookup for name [spring.liveBeansView.mbeanDomain] threw NamingException with message: Could not obtain an initial context due to a communication failure. Since no provider URL was specified, the default provider URL of "corbaloc:iiop:1.0@mymachine:2809/NameService" was used. Make sure that any bootstrap address information in the URL is correct and that the target name server is running. Possible causes other than an incorrect bootstrap address or unavailable name server include the network environment and workstation network configuration.. Returning null.
从属性文件中获取值没有问题。
我需要帮助来找到配置应用程序以跳过 jndi 查找的最佳方法
【问题讨论】:
标签: java spring properties jndi