java - Spring 无法从 XML 读取 bean 属性

标签 java xml spring javabeans

我在从 bean 配置 XML 设置成员值时遇到问题。我已将其归结为最简单的用例;这里的类实际上并不打算做任何事情。我注意到文本值从未被设置(始终为 null),因此我在 setter 方法上添加了 @Required。这会产生 BeanCreationException。详细信息请参见:

https://gist.github.com/arwagner/7268989

服务等级:

@Service
public class FoobarService {
private static final Logger logger = LoggerFactory.getLogger(FoobarService.class);
private String text;

public void report() {
    logger.info("text: " + getText());
}

public String getText() {
    return text;
}

@Required
public void setText(String text) {
    logger.info("setText called");
    this.text = text;
}
}

Controller 类:

@Controller
public class HomeController {
@Autowired
private FoobarService foobarService;

@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {    
    foobarService.report();
    return "home";
}
}

根上下文.xml:

...

<bean id="foobarService" class="com.agilex.onboardservices.services.FoobarService">
    <property name="text" value="foobar"/>
</bean>
...

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
metadata-complete="false">

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/root-context.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

servlet-context.xml:

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

<annotation-driven />
<resources mapping="/resources/**" location="/resources/" />

<beans:bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
    <beans:property name="mediaTypes">
        <beans:map>
            <beans:entry key="html" value="text/html" />
            <beans:entry key="json" value="application/json" />
        </beans:map>
    </beans:property>
    <beans:property name="viewResolvers">
        <beans:list>
            <beans:bean class="org.springframework.web.servlet.view.UrlBasedViewResolver">
                <beans:property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
                <beans:property name="prefix" value="/WEB-INF/views/" />
                <beans:property name="suffix" value=".jsp" />
            </beans:bean>
        </beans:list>
    </beans:property>
</beans:bean>

<context:component-scan base-package="com.agilex.onboardservices" />
</beans:beans>

最佳答案

可能创建了两个 FoobarService 实例。 servlet 的应用程序上下文和主应用程序上下文中的一个。移动

<bean id="foobarService" class="com.agilex.onboardservices.services.FoobarService">
  <property name="text" value="foobar"/>
</bean>

到servlet-context.xml,以便通过组件扫描创建的 Controller 可以看到在同一上下文上创建的FooBarService实例。

关于java - Spring 无法从 XML 读取 bean 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19760414/

相关文章:

android - 如何编辑现有的 Android 应用程序,使应用程序的名称和图标不同

java - session 树 xml 表示为 java 对象

java - 为什么我的 spring 验证注释不起作用

java - spring boot 404错误自定义错误响应ReST

Java API 用于任何一年的印度教日历中假期日期的 Swing

java - Xml解析包括内联解析

java - 将 JScrollPane 添加到 JPopupMenu

java - 响应.setContentType ("APPLICATION/OCTET-STREAM")

Java SAX 解析器命名空间抛出 NullPointerException

java - 使用递增的查询参数重复 WebClient 调用