[笔记]编写Struts2的单元测试时遇到的一个store拦截器报空的问题

由于在struts.xml中配置了一个sotre拦.截.器,如下,
       <!-- 配置使用store interceptor,可以在redirect页面时,将异常等信息存储在session中. -->
       <interceptor-ref name="store">
           <param name="operationMode">AUTOMATIC</param>
       </interceptor-ref>

然后参照Struts2官方文档编写测试用例,可是在sotre拦.截.器处经常报空,参照

http://depressedprogrammer.wordpress.com/2007/06/18/unit-testing-struts-2-actions-spring-junit/

后修正了!!!

你可能感兴趣的:(struts2,单元测试,空指针异常,store拦截器)