Struts2 里,JSP怎么使用问号传值到后台,路径怎么设置才能传到后台?

web.xml:<?xmlversion="1.0"encoding="UTF-8"?><web-appversion="2.5"xmlns="http://java.s... web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping></web-app>

struts.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="action" extends="struts-default" namespace="/">
<action name="hello" class="com.lzg.action.HelloAction" method="execute" >
<result name="gogo">/index.jsp</result>
</action>

</package>
</struts>
简写的jsp : <a href ="hello.do?person='nilson'">click </a>
请问后台的HelloWorldAction如何得到person的值。在struts2下怎么设置
展开
 我来答
匿名用户
2012-01-28
展开全部
在对应HelloWorldAction中,定义一个person的全局变量,进行get、set的设置。就可以在这个action中获得person的值了。
追问
哥们 ,关键是报 404错误 。所以 我问设置可能 的 问题 。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chenguang5092
2012-01-29 · TA获得超过664个赞
知道小有建树答主
回答量:520
采纳率:50%
帮助的人:457万
展开全部
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping></web-app>
-------------
<a href ="hello.action?person='nilson'">click </a>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式