Struts2、Hibernate、Spring三大框架整合员工管理系统


Struts2、Hibernate、Spring三大框架整合员工管理系统_第1张图片
导入jar包.png

初始的配置文件:

  • web.xml


    _SSH_ygglxt

    
    
        org.springframework.web.context.ContextLoaderListener
    
    
        contextConfigLocation
        classpath:applicationContext.xml
    

    
    
        struts2
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    
    
        struts2
        /*
    


  • applicationContext.xml(spring中的bean.xml)





  • Struts.xml




    
    
    
    

Struts2、Hibernate、Spring三大框架整合员工管理系统_第2张图片
还有log4j.propertext.png

创建包结构

Struts2、Hibernate、Spring三大框架整合员工管理系统_第3张图片
QQ截图20170302094708.png
package domain;

public class Product {
    private int pid;
    private String pname;
    private Double price;

    public int getPid() {
        return pid;
    }

    public void setPid(int pid) {
        this.pid = pid;
    }

    public String getPname() {
        return pname;
    }

    public void setPname(String pname) {
        this.pname = pname;
    }

    public Double getPrice() {
        return price;
    }

    public void setPrice(Double price) {
        this.price = price;
    }
}

保存商品页面addProduct.jsp

Struts2、Hibernate、Spring三大框架整合员工管理系统_第4张图片
addProduct.jsp.png
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>




Insert title here


    

保存商品页面

商品名称
商品价格


你可能感兴趣的:(Struts2、Hibernate、Spring三大框架整合员工管理系统)