ssh整合时Struts2无论如何都找不到jsp页面 求 助

tomcat页运行了localhost:8080页通了就是找不到jsp页面尝试了放在任何文件下尝试了任何路径我头都要炸了struts.xml<?xmlversion="1... tomcat页运行了 localhost:8080页通了 就是找不到jsp页面 尝试了放在任何文件下 尝试了任何路径 我头都要炸了

struts.xml
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<!-- 开启开发者模式 -->
<constant name="struts.devMode" value="true"></constant>

<!-- 配置动作 -->
<package name="customer" extends="struts-default" namespace="test">
<action name="addUICustomer" class="com.itheima.web.action.CustomerAction" method="adUICustomer">
<result name="addUICustomer" type="dispatcher">add.jsp</result>
</action>
</package>

</struts>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>ssh</display-name>
<!-- 配置struts2和兴过滤器 -->
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>

index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<a href="${pageContext.request.contextPath}/addUICustomer">dianji</a>
</body>
</html>

package com.itheima.web.action;

import com.itheima.domain.Customer;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

public class CustomerAction extends ActionSupport implements ModelDriven<Customer> {

private Customer customer = new Customer();

@Override
public Customer getModel() {

return customer;
}

public String addUICustomer() {

return "addUICustomer";
}

}
展开
 我来答
DoramiHe
2018-08-30 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25332 获赞数:59541
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
1 private UserInfo uInfo; //不是list.... 不用放在<s:iterator></s:iterator >里,直接${uInfo.numbId}就可以了 2 private List<UserInfo> uInfoList;//如果要显示这个list <s:iterator value="#request.uInfoList" > ${numbld} </s:iterator> 下面这样也行 <s:iterator value="uInfoList" > ${numbld} </s:iterator>
识见kkva
2020-06-21
知道答主
回答量:1
采纳率:0%
帮助的人:603
展开全部
想问一下解决了吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式