gpt4 book ai didi

java - Struts 标签覆盖实际的上下文路径

转载 作者:太空宇宙 更新时间:2023-11-04 06:59:40 25 4
gpt4 key购买 nike

我有一个页面,其中包含重定向到 struts 操作的链接,当我通过 URL 操作重定向时,该操作工作正常。我需要再次调用该操作,此时上下文路径显示错误。如果我在 namespace 中给出该 URL 操作,则会出现困惑。怎么解决这个问题呢?

文件在这里:

index.jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!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>Online Test Taking System</title>
</head>
<body>
<s:url action="viewuncomputedlist.action" var="viewremlist" />

<a href="<s:url action='viewuncomputedlist'/>"> Here you GO! </a>
</body>
</html>

struts.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
<package name="user" namespace="/" extends="struts-default">
<action name="compute" class="com.action.ComputeScore" method="computeMethod">
<result name="redirect" type="chain">viewuncomputedlist</result>
</action>
<action name="viewuncomputedlist" class="com.action.FetchRemUser">
<result name="success">viewList.jsp</result>
</action>
</package>
</struts>

当我在某些提交表单中调用该操作时,它直接从 WebContent 调用它。但所有 JSP 文件都在 WebContent/jsp/rams/result/ 中。

最佳答案

您应该使用 JSP 的绝对路径名,除非您知道自己在做什么

<result name="success">/jsp/rams/result/viewList.jsp</result>

关于java - Struts 标签覆盖实际的上下文路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22282763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com