Struts的学习-属性驱动和模型驱动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts的学习-属性驱动和模型驱动相关的知识,希望对你有一定的参考价值。

1.新建空项目,并托管到码云

2.设立maven

技术分享

3.设置pom.xml

技术分享

4.建包

技术分享

 

5.在java包里建立两个类

技术分享

package com.nf.entity;

public class User {
    private String userName;
    private String userPassword;

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getUserPassword() {
        return userPassword;
    }

    public void setUserPassword(String userPassword) {
        this.userPassword = userPassword;
    }
}

技术分享

(ps:可以使用Alt+Enter导出实现方法)

 

 6.建立jsp的文件

技术分享

 

7.建立struts,并设置

技术分享

 

 

<?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="mypack" extends="struts-default">
        <action name="userAction_loginView" class="com.nf.action.UserAction" method="loginView">
            <result name="success">/WEB-INF/jsp/loginView.jsp</result>
        </action>
        <action name="userAction_login" class="com.nf.action.UserAction" method="login">
            <result name="success">/WEB-INF/jsp/success.jsp</result>
            <result name="error">/WEB-INF/jsp/error.jsp</result>
        </action>
    </package>
</struts>

8.当点击运行时

技术分享

 

 地址:https://gitee.com/MuNianShi/user2.git



以上是关于Struts的学习-属性驱动和模型驱动的主要内容,如果未能解决你的问题,请参考以下文章

Struts2属性驱动和模型驱动

Struts2 属性驱动模型驱动异常机制

struts2属性驱动模型

Struts2 模型驱动动作中的继承可能吗?

struts2 模型驱动封装

Struts框架属性驱动