StrutsとSpring3 : n.a.o
n.a.o (
n.a.o) 投稿者,
@ 2009-07-27 00:22:00
StrutsとSpring3
Spring3.xではStruts1.xのdelegation supportが無くなっている。
SPRING FRAMEWORK CHANGELOG
* removed outdated Struts 1.x Action delegation support
public class InitListener implements ServletContextListener,
HttpSessionListener, HttpSessionAttributeListener {
public void contextInitialized(ServletContextEvent sce) {
OgnlRuntime.setSecurityManager(null);
}
// 以下、略
web.xmlに、Listenerを追加。
<listener>
<listener-class>com.papanda.InitListener</listener-class>
</listener>