spring属性初始化问题

时间:2014-06-26 13:49:27

标签: java spring spring-mvc jersey

我已经创建了一个服务bean并声明了变量。伪代码: //一个班级

@Service
@Transactional(propagation=Propagation.REQUIRES_NEW)
public class CustomerService {
  public Map<Long,Boolean> someMap= new HashMap<>(); 
}

//调用者类

@Component
@Path("/maincontroller")
class MainCaller{
    @Autowired
    CustomerService customerService;

    @POST
    @Path("/process")
    public Response processCustomer() {
        try{
        //some processing 
        }finally{
        synchronized (customerService.someMap) { //liee 64
        //do some work on map
        }

    }
}

我得到空指针异常@liee a 我不明白这一点。据我所知,spring在初始化其所有属性后创建了bean。当我用新变量声明someMap时,它不应该为null。那为什么它会给出空指针异常。 错误:

  

com.sun.jersey.spi.container.ContainerResponse   mapMappableContainerException SEVERE:RuntimeException不能   被映射到响应,重新投掷到HTTP容器   java.lang.NullPointerException at   org.hungama.controller.MainCaller.processCustomer(MainCaller.java:64)

// Web.xml中

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/config/rest-servlet.xml</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>

    <servlet>
        <servlet-name>jersey-serlvet</servlet-name>
        <servlet-class>
            com.sun.jersey.spi.spring.container.servlet.SpringServlet
        </servlet-class>
        <init-param>
            <param-name>
                com.sun.jersey.config.property.packages
            </param-name>
            <param-value>org.test.controller</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>jersey-serlvet</servlet-name>
        <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>

// SPRING上下文

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

    <import resource="rest-datasource.xml" />
    <context:component-scan base-package="org.test" />
    <mvc:annotation-driven />


    <bean
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
         <property name="locations">  
               <list>  
               <value>classpath:/retailser_detaults.properties</value>  
               <value>classpath:/log4j.properties</value>  
               </list>  
         </property>  
    </bean>
</beans>

// pom.xml的

<!-- Jersey -->
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-server</artifactId>
            <version>1.8</version>
        </dependency>

1 个答案:

答案 0 :(得分:1)

只是为了澄清:

<强>原因
1.您正在使用@Transactional,因此您需要了解它适用于AOP,请参阅此处Spring transaction management
2.您注释了服务类,它没有实现接口,这意味着spring将使用CGLIB来实现事务管理。 (如果你有一个接口,它将使用代理模式来实现事务管理) 3. CGLIB修改此类的字节代码,从而导致NPE

解决方案:使用getter / setter模式取消对公共字段的直接访问。

其他:IMO使用公共字段不是一个好习惯。使用map的静态缓存可能会导致潜在的内存泄漏。