本文主要讲述struts2的基本配置,注意是基本配置,struts2的配置不仅仅是这些。主要是为了演示第一个程序,所以本人认为越简单越好。
大多的配置基本和webwork相同。如果你会webwork只需要你5分钟的时间。
Web.xml文件添加代码如下:
xml 代码
- xml version="1.0" encoding="UTF-8"?>
- <web-app version="2.4"
- xmlns="http://java.sun.com/xml/ns/j2ee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
- http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
- <filter>
- <filter-name>struts<!---->filter-name>
- <filter-class>org.apache.struts2.dispatcher.FilterDispatcher<!---->filter-class>
- <!---->filter>
- <filter-mapping>
- <filter-name>struts<!---->filter-name>
- <url-pattern>/*<!---->url-pattern>
- <!---->filter-mapping>
- <!---->web-app>
建一个index.jsp页面如下:
<%@ page contentType="text/html; charset=GBK"%><o:p></o:p>
<%@ taglib prefix="s" uri="/struts-tags"%><o:p></o:p>
<html><o:p></o:p>
<head><o:p></o:p>
<title>index<!---->title><o:p></o:p>
<!---->head><o:p></o:p>
<body><o:p></o:p>
<s:form action="index"><o:p></o:p>
<s:textfield name="userName" label="enter your name"><!---->s:textfield><o:p></o:p>
<s:submit /><o:p></o:p>
<!---->s:form><o:p></o:p>
<!---->body><o:p></o:p>
<!---->html><o:p></o:p>
建一个IndexAction类代码如下:
java 代码
- package com.test.struts2;
- import com.opensymphony.xwork2.ActionSupport;
- @SuppressWarnings("serial")
- public class IndexAction extends ActionSupport{
-
- private String userName;这里的个名字要和表单的名字一样
-
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String sayHello() throws Exception {
- return SUCCESS;
- }
- }
建立struts2的核心配置文件:struts.xml代码如下:<o:p></o:p>
xml 代码
- xml version="1.0" encoding="UTF-8" ?>
- "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
- "http://struts.apache.org/dtds/struts-2.0.dtd">
- <struts>
- <include file="struts-default.xml" />
- <package name="default" extends="struts-default">
- <action name="index" class="com.test.struts2.IndexAction" method="sayHello">
- <result name="success" type="freemarker">/main1.ftl<!---->result>
- <!---->action>
- <!---->package>
- <!---->struts>
分享到:
相关推荐
**Struts 2初体验** Struts 2是一款强大的基于MVC(Model-View-Controller)设计模式的Java Web框架,它旨在简化企业级应用程序的开发。作为一个初学者,了解并掌握Struts 2的基本概念和操作流程是至关重要的。 **...
### Struts2核心知识点解析 #### 一、Struts2框架概述 - **定义与特点**:Struts2是一款基于MVC(Model-View-Controller)设计模式的Java Web应用程序框架,它继承了Struts1的优点,同时在设计上更加灵活、易用,...
Struts2是一个强大的Java web开发框架,用于构建可维护、可扩展且结构良好的应用程序。它在MVC(Model-View-Controller)设计模式的基础上提供了一种实现方式,使得开发者能够更方便地处理用户请求,控制业务逻辑,...
### Struts 2 初体验知识点总结 #### 1. 下载与安装Struts 2 **1.1 下载Struts 2** - **官方下载地址**:http://struts.apache.org/download.cgi - **最新发行版本**:在撰写本书时,Struts 2 的最新稳定版本为 ...
这个“Struts2的视频学习代码”资料可能是为了帮助开发者深入理解和实践Struts2的核心概念和机制。以下是根据标题、描述和标签生成的相关知识点: 1. **MVC架构**:MVC模式是软件设计中的一种经典架构,它将应用...
根据提供的文件信息,我们可以推断出这是一套关于Struts2框架的教学视频资料,由知名的教育机构传智播客在2015年9月发布。下面将对Struts2框架进行详细介绍,并基于该视频资料可能涵盖的核心知识点进行展开。 ### ...
本视频教程由传智播客提供,旨在帮助初学者理解Struts2的基础概念,并指导如何搭建Struts2的开发环境。 首先,我们要了解Struts2的核心概念。Struts2是一个基于MVC(Model-View-Controller)设计模式的框架,它的...
在“黑马Struts2视频(day2)”中,我们很可能会深入探讨Struts2的核心概念、组件以及实际应用。 1. **Struts2框架基础**: - Struts2是Apache软件基金会的一个项目,它是Struts1的升级版,结合了WebWork的优势,...
这个"视频上传管理后台系统Struts2"项目很可能是一个基于Struts2框架开发的系统,用于处理视频内容的上传、管理和分发。下面我们将深入探讨Struts2的核心特性以及在视频管理系统中的应用。 1. **Struts2框架概述** ...
Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试...
Struts2是一款非常流行的Java Web框架,用于构建企业级应用。然而,随着时间的推移,Struts2在安全方面暴露出了一些重要的漏洞,这给使用该框架的系统带来了潜在的安全风险。"Struts2漏洞检查工具Struts2.2019.V2.3...