开发者

Why Spring tc localhost server throw nullPointerException instead of autowiring?

I'm struggling for a problem that seems to be stupid but that I can't understand. I'm testing a very simple servlet using the localhost server provided with SpringSource. This is the meaningful part of the servlet:

@ContextConfiguration("configuration.xml")
public class Refresh extends HttpServlet {
private static final long serialVersionUID = 1L;

@Autowired
private IUserDao uDao;

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    User a = uDao.getUser(1);
}

}

I'm sure that Dao is correct because calling it from a junit test class everything works fine. The strange thing is that I was expected to find something like a "FailedToLoadApplicationContext" exception, but the error is just a NullPointerException, such as @Autowired a开发者_如何学JAVAnd @ContextConfiguration doesn't exist. Should this be a problem of the server that i'm using?

This is my configuration.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Spring configuration for data access tier -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
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-3.0.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<context:component-scan base-package="com.firststepteam.dao">
    <context:include-filter type="annotation"
        expression="org.springframework.stereotype.Repository"/>
</context:component-scan>

<context:component-scan base-package="com.firststepteam.services">
    <context:include-filter type="annotation"
        expression="org.springframework.stereotype.Service"/>
</context:component-scan>

<!-- View resolver -> JSP -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/jsp/"/>
    <property name="suffix" value=".jsp"/>
</bean>

<!-- PropertyPlaceholderConfigurer, serve a recuperare le impostazioni
per il dataSource nel file firststep.conf -->
<bean id="placeHolder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations" value="classpath:hostingData.conf" />
</bean>

<!-- DataSource, sorgente del db, i value sono in firststep.conf -->
<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${jdbc.db.driverClassName}" />
    <property name="url" value="${jdbc.db.url}" />
    <property name="username" value="${jdbc.db.username}" />
    <property name="password" value="${jdbc.db.password}" />
</bean>

<!-- JPA E HIBERNATE -->
<bean id="jpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
  <property name="database" value="MYSQL" />
  <property name="generateDdl" value="true" />
</bean>

<!-- ENTITY MANAGER FACTORY -->
<bean id="dbEntityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
  <property name="dataSource" ref="dataSource" />
  <property name="persistenceUnitName" value="fs_db" />
  <property name="jpaVendorAdapter" ref="jpaVendorAdapter" />
</bean>

<tx:annotation-driven />
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="dbEntityManagerFactory" />
</bean>

<bean class = "org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />

</beans>

As you can see, I'm using JPA and Hibernate


You should add a setter for :

private IUserDao uDao;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜