真的好反感那些讽刺别人说老师讲的不好的人,你们老是说别人菜不懂还怪老师难道你不就是从一个什么都不懂然后到处去求知问解的,你既然不能解决人家的问题就不要去讽刺人家菜不菜的问题,反正就我个人感觉老师这节课确实讲的有点模糊,但我还是尊重老师的劳动成果!
2018-04-14
Struts2使用版本若是2.3.24,则过滤器为:org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
若报:There is no Action mapped for namespace [/] and action name [Login] associated with context path [/eprint]错误
做如下检查:确保struts.xml文件名大小写正确:struts.xml(我的错是写成了strust);确保struts.xml文件在src目录下
若报:There is no Action mapped for namespace [/] and action name [Login] associated with context path [/eprint]错误
做如下检查:确保struts.xml文件名大小写正确:struts.xml(我的错是写成了strust);确保struts.xml文件在src目录下
2018-04-13
版本:struts-2.5.16
1.代码:<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd">
2.路径调整了:web.xml包路径
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
3.多导个log4j个jar包
1.代码:<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd">
2.路径调整了:web.xml包路径
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
3.多导个log4j个jar包
2018-04-10
https://struts.apache.org/core-developers/。官方文档更详细,看不懂英文可以点浏览器自带的翻译成中文,翻译的还是可以的
2018-04-06
struts-2.3.34\docs\docs\strutsproperties.html官网下载的包有更加详细的说明
2018-04-05
报404错误的请注意下struts.xml文件中LoginAction中需要添加一个name值为input的result
struts.xml页部分代码如下:
<action name="LoginAction" method="login" class="action.LoginAction">
<result>/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
struts.xml页部分代码如下:
<action name="LoginAction" method="login" class="action.LoginAction">
<result>/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
2018-03-10