struts环境搭建以及登陆功能的书写

环境搭建

需要的jar包

1488305-20190811214150319-847585309.jpg


web.xml文件配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>strutsForum</display-name>
  <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>
  
  <filter>
    <filter-name>struts</filter-name>
    <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  
  <filter-mapping>
    <filter-name>struts</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

filter包的位置

struts2-core-2.5.16.jar 包下

1488305-20190811214419155-919377767.jpg

登陆功能书写

1. UserAction

创建一个UserAction类,继承ActionSupport 再实现ModelDriven<>接口
重写UserAction类中的execute()方法

package com.cky.web;

import com.cky.domain.User;
import com.cky.service.UserService;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

public class UserAction extends ActionSupport implements ModelDriven<User>{

    public User user=new User();
    
    public String execute() throws Exception {
        
        System.err.println("我已经运行");
        
        UserService userService =new UserService();
        boolean success=userService.findUser(user);
        if(success) {
            return "success";
        }else {
            return "error";
        }
        
        
        
    }

    
    public User getModel() {
        
        
        return user;
    }
    
}

2.struts.xml 配置文件书写

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

<struts>

    <!--  <package> name:配置包名   extends:固定形式 extends="struts-default"
           <action> name:浏览器上方访问的url  class:action类路径 method:实现方法
           <result> name:返回的参数名 
          
     -->
    <package name="MyPackage" namespace="/" extends="struts-default">
        <action name="LoginAction" class="com.cky.web.UserAction" method="execute">
            <result name="success">/index.html</result>
            <result name="error">/login.jsp</result>
        </action>
    </package>
</struts>

转载于:https://www.cnblogs.com/a1737301376/p/11336884.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值