0

我关注了这篇文章并创建了一个自定义 URL 应用程序。正在调用该操作,但 url 显示会话 ID,例如

http://localhost:8080/CustomURL%7Busername%7D.action;jsessionid=9C1FB3EB633209C18625BBB40EA61000

我只想喜欢http://localhost:8080/CustomURL/rajesh

见我的struts.xml

<struts>
<constant name="struts.mapper.alwaysSelectFullNamespace"
    value="false" />
<constant name="struts.enable.SlashesInActionNames" value="true" />
<constant name="struts.patternMatcher" value="namedVariable" />
<package name="default" namespace="/" extends="struts-default">
    <action name="">
        <result name="success">home.jsp</result>
    </action>

    <action name="{username}" class="com.rajesh.struts2.CustomURL"
        method="customUrl">
        <result name="success">welcome.jsp</result>
    </action>

</package>

查看我的 JSP 页面:

<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Struts 2 Custom URL</title>
</head>
<body>
    <h1>Struts 2 Custom URL</h1>
    <h3>Enter your name below</h3>
    <s:form action="{username}">
        <s:textfield name="username" />
        <s:submit />
    </s:form>
</body>
</html>

请参阅下面的 java 文件:

public class CustomURL extends ActionSupport {

    private String username;

    public String getUsername() {
        System.out.println("Getter");
        return username;
    }

    public void setUsername(String username) {
        System.out.println("Setter");
        this.username = username;
    }

    private static final long serialVersionUID = -4337790298641431230L;

    public String customUrl() {
        return SUCCESS;
    }
}
4

3 回答 3

0

$在 {username} 之前尝试。$代表Freemarker

<action name="{username}" class="com.rajesh.struts2.CustomURL" 
 method="customUrl">

Freemarker 教程

如何使用 OGNL 表达式示例链接

<s:property value="username"/> for calling username on welcome page.

它可以帮助你得到你的答案。

于 2014-05-23T04:37:55.470 回答
0

尝试一下..

 public String customUrl() {

   HttpServletRequest request=(HttpServletRequest) ActionContext.getContext().get(ServletActionContext.HTTP_REQUEST);
   String url="http://"+request.getServerName()+":"+request.getServerPort()+""+request.getContextPath()+"/"+request.getParameter("username");

   logger.info(" Current url : "+url);  //check it here

    return SUCCESS;
 }
于 2014-05-23T05:42:12.807 回答
0

首先,如果您不希望用户认为他们的名字有扩展名,那么您应该摆脱操作扩展名。

<constant name="struts.action.extension" value=",,action"/> 

接下来模式匹配器应该是regex.

<constant name="struts.patternMatcher" value="regex"/>

动作映射

<action name="/CustomURL/{username}" class="com.rajesh.struts2.CustomURL" method="customUrl">
    <result name="success">welcome.jsp</result>
</action>

在 JSP 中您不需要使用form标记,而是使用锚标记。并使用已知名称。

<a href="http://localhost:8080/CustomURL/rajesh">Click my name</a>
于 2014-05-23T06:07:15.830 回答