不要浪费我时间了好吗,慕课网上每次照着一摸一样的东西总是出错,也不知道为什么,一解决解决老半天,我只是想快速学习上手啊,我真的服了
2019-06-23
struts2.5需要加<global-allowed-methods>regex:.*</global-allowed-methods>。课程中感叹号方式请求中请求方法,返回的字符串,还有result元素的name都用同一个名字其实不太好理解,我个人是这样理解的:add(){return "addd";} <result
name="addd">add.jsp</result>,访问的url是hello_add.action,则先进入到add方法,里面return "addd",则去找到name="addd"的result元素,该元素对应的页面是add.jsp。
name="addd">add.jsp</result>,访问的url是hello_add.action,则先进入到add方法,里面return "addd",则去找到name="addd"的result元素,该元素对应的页面是add.jsp。
2018-09-11
<package name="default" namespace="/" extends="struts-default">
<action name="hello_*" method="{1}" class="com.ly.action.HelloAction" >
<result>/result.jsp</result>
<result name="add">/{1}.jsp</result>
</action>
进入add方法后,只会跳到result.jsp页面
<action name="hello_*" method="{1}" class="com.ly.action.HelloAction" >
<result>/result.jsp</result>
<result name="add">/{1}.jsp</result>
</action>
进入add方法后,只会跳到result.jsp页面
2018-09-10
2.5版本参考https://blog.csdn.net/zhixiandianji/article/details/52576742
2018-08-31
再来一条,总结了一个清理的方案,eclipse->property->clean这个清理一下后,然后重启一下tomcat就可以了
2018-08-30