随笔分类 -  Struts2

摘要:做了2个action,其中一个运行没有问题,另一个报错,看下面的报错信息,再看了看struts.xml,因为没有给GetBooks这个action配置actionform,所以就导致报null。下面是有问题的struts.xml,其中主要的问题就是没有给GetBooks这个action配置actio... 阅读全文
posted @ 2014-06-18 16:33 rldts 阅读(4877) 评论(0) 推荐(0) 编辑
摘要:原因:我往项目的WEB-INF/lib中导入了struts2基本的包,还有struts1的core包,以及struts2-strut1-plugin的包,但是没有导入commons-loggin-1.3.1这个包,如下图我打开commons-loggin-1.3.1这个包看了一下,果然找到了这个组件... 阅读全文
posted @ 2014-06-18 16:00 rldts 阅读(272) 评论(0) 推荐(0) 编辑
摘要:struts.xml中为了与struts1的MVC模式整合,需要类似如下的拦截器的引用 ... 阅读全文
posted @ 2014-06-18 15:48 rldts 阅读(425) 评论(0) 推荐(0) 编辑
摘要:我一琢磨,难道freemarker与struts2的整合也需要添加一个struts2-freemarker-plugin的jar包?后来找了半天,确认不需要这个。然后我就上网搜,这个FreeMarkerPageFilter到底在哪个jar包里,后来终于发现,就在struts2-sitemesh-pl... 阅读全文
posted @ 2014-06-16 16:25 rldts 阅读(463) 评论(0) 推荐(0) 编辑
摘要:今天做的一个Struts2+MyFaces(JSF)+Spring的应用,为了使用JSF,我的struts.xml中使用了如下代码 ... 阅读全文
posted @ 2014-06-16 15:45 rldts 阅读(423) 评论(0) 推荐(0) 编辑
摘要:举个例子,我今天在做spring和struts2整合的例子新建项目blk1、配置好web.xml,struts.xml,applicationContext.xml,写好jsp页面2、把struts2、spring整合需要的jar包(struts核心jar包,spring核心jar包以及struts... 阅读全文
posted @ 2014-06-15 17:13 rldts 阅读(371) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.cnblogs.com/S-E-P/archive/2012/01/18/2325253.html这篇文章说的关键就是“除了导入Struts2和Spring的核心库之外,还要导入commons-logging和struts2-spring-plugin包,否则启动会出异常... 阅读全文
posted @ 2014-06-15 16:34 rldts 阅读(234) 评论(0) 推荐(0) 编辑
摘要:struts.xml中写的是authorityInterceptor/xxx.jsp但是实际的文件结构是/authorityInteceptor/xxx.jspstruts2就报了404,所以遇到struts2报404的时候注意检查一下是不是这个问题 阅读全文
posted @ 2014-06-12 15:36 rldts 阅读(274) 评论(0) 推荐(0) 编辑
摘要:如果你在一个项目中使用了struts2,也就是说,你在web.xml中配置了如下代码: struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ... 阅读全文
posted @ 2014-06-09 16:33 rldts 阅读(274) 评论(0) 推荐(0) 编辑
摘要:看教材的时候写的DTD是用浏览器访问URL直接404,在eclipse中也没有代码提示,说明这个DTD已经不可用然后去看Struts2的官方JAVADOC,找到http://struts.apache.org/release/2.3.x/xwork-core/apidocs/index.html看了... 阅读全文
posted @ 2014-06-08 12:50 rldts 阅读(473) 评论(0) 推荐(0) 编辑
摘要:Struts2.3.16, Tomcat6.0.37,Java8/web.xml blk struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ... 阅读全文
posted @ 2014-06-08 10:06 rldts 阅读(212) 评论(0) 推荐(0) 编辑
摘要:jar包放多了就报Exception什么Unable to load....上网搜了半天也没有能解决的下面所说的jar包放到WEB-INF/lib以及tomcat/lib中通过我一个一个添加到tomcat/lib中,直到启动服务器的时候不再报ClassNotFoundException或者Class... 阅读全文
posted @ 2014-06-08 09:44 rldts 阅读(739) 评论(0) 推荐(0) 编辑