使用Spring @Value注释

时间:2016-09-23 23:01:14

标签: java spring properties jndi

我有一个spring app配置为在xml上配置属性文件为

 <context:property-placeholder location="classpath:app.properties"/>

我有使用@Value注释从这里查找值的类。 但是,每次我在没有Java应用程序服务器(Websphere)的情况下运行junit测试时,查找该值需要一段时间,例如每个字段需要1秒。 打开DEBUG模式显示它是导致它的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查找的最佳方法

1 个答案:

答案 0 :(得分:3)

我创建了一个spring.properties文件并添加了此值 spring.jndi.ignore=true