当前位置: 首页 > 教程 > Struts2 >

Struts2 url标签

精华
小牛编辑
95浏览
2023-03-14

URL标签是负责生成URL字符串。这样做的好处是,你可以提供参数标签。我们通过一个例子来说明使用的URL标签。

创建动作类:

package com.yiibai.struts2;

public class HelloWorldAction{
   private String name;

   public String execute() throws Exception {
      return "success";
   }
   
   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }
}

创建视图

helloWorld.jsp包含以下内容:

<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<s:url id="login" action="login" var="myurl">
	<s:param name="user">Zara</s:param>
</s:url>

<a href='<s:property value="#myurl"/>'>
<s:property value="#myurl"/></a>

</body>
</html>

在这里,我们生成一个网址链接“login.action”。我们已经给这个url名称“myurl”。这是为了让我们可以重用这个网址链接在多个地方的jsp文件。然后,我们提供的url参数调用用户。参数值实际上追加到查询字符串,可以看到从上面的输出。 

主要是有用是当你想创建一个bean属性值的基础上动态超链接的URL标签。

配置文件

你的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>
   <constant name="struts.devMode" value="true" />
   <package name="helloaction" extends="struts-default">
      <action name="hello" 
            class="com.yiibai.struts2.HelloWorldAction" 
            method="execute">
         <result name="success">/HelloWorld.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" 
   xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
   http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
   id="WebApp_ID" version="3.0">
   
   <display-name>Struts 2</display-name>
   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>
   <filter>
      <filter-name>struts2</filter-name>
      <filter-class>
         org.apache.struts2.dispatcher.FilterDispatcher
      </filter-class>
   </filter>

   <filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
   </filter-mapping>
</web-app>

右键点击项目名称,并单击Export > WAR File创建一个WAR文件。然后部署这个WAR在Tomcat的webapps目录下。最后,启动Tomcat服务器和尝试访问URL http://localhost:8080/HelloWorldStruts2/hello.action。这会给你以下画面:

Struts url tag