0

Spring が定義された値をコンストラクター引数のプレースホルダーに渡そうとしないという奇妙な問題があります。現在は と定義されて${myProperty}いますが、そこには何でも書き込めます。エラーはありません。${myProperty}リテラル文字列を Bean コンストラクターに渡すだけです。それ以外の場合、構成は完全に機能するようです。

私の beans.xml は次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<beans 
  xmlns="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

  <context:property-placeholder order="1" properties-ref="propertiesBean" />

  <bean id="propertiesBean" class="org.springframework.beans.factory.config.PropertiesFactoryBean">

   <property name="properties">
      <props>
        <prop key="myProperty">Foo</prop>
      </props>
  </property>

  </bean>

  <bean id="wrapperBean" class="springapp.bean.Wrapper">    
    <constructor-arg value="${myProperty}">          
    </constructor-arg>
  </bean>

</beans>

この構成で何が欠けているのか、誰にも分かりますか? たぶんそれは明らかなことですが、私はSpringの経験があまりありません。Spring バージョン 3.2.x と WildFly 8.1 をコンテナーとして使用します。

編集:

beans.xml は次のようにロードされます。

public class TestServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;

  private static final Log log = LogFactory.getLog(TestServlet.class);

  private XmlBeanFactory factory;

  public void init() throws ServletException {
    ClassPathResource resource = new ClassPathResource("beans.xml", TestServlet.class.getClassLoader());
    factory = new XmlBeanFactory(resource);
  }

  public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    Wrapper bean = (Wrapper) factory.getBean("wrapperBean");
    String value = bean.inner.value;
    resp.getWriter().print(value);
  }
}
4

1 に答える 1

1

ApplicationContextの代わりに を使用する必要がありますBeanFactory

public class TestServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;

  private static final Log log = LogFactory.getLog(TestServlet.class);

  private ApplicationContext ctx;

  public void init() throws ServletException {
    ctx = new ClassPathXmlApplicationContext("beans.xml");
  }

  public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    Wrapper bean = ctx.getBean("wrapperBean", Wrapper.class);
    String value = bean.inner.value;
    resp.getWriter().print(value);
  }
}

違いについては、リファレンス ガイドを確認してください。

于 2014-06-18T10:22:49.577 に答える