1.

 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- 配置哪些包下的类需要自动扫描 -->
<context:component-scan base-package="com.sanqing"/> <!-- 这里的jun要与persistence.xml中的 <persistence-unit name="jun" transaction-type="RESOURCE_LOCAL">
中的name值要一致,这样才能找到相关的数据库连接
-->
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
<property name="persistenceUnitName" value="jun"/>
</bean>
<!-- 配置事物管理器 -->
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<!-- 配置使用注解来管理事物 -->
<tx:annotation-driven transaction-manager="transactionManager"/> </beans>

2.

 package com.sanqing.po;

 import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity @Table(name="tb_customer")
public class Customer { //客户信息类
@Id @Column(length=20)
private String customerNO; //客户编号
@Column(length=15)
private String customerName;//客户名称
@Column(length=15)
private String phone; //客户电话
@Column(length=30)
private String address; //客户地址
@Column(length=15)
private String relationman; //客户联系人
@Column(length=30)
private String otherInfo; //其他信息
public Customer(){}
public Customer(String customerNO) {
this.customerNO = customerNO;
}
public String getCustomerNO() {
return customerNO;
}
public void setCustomerNO(String customerNO) {
this.customerNO = customerNO;
} public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
} public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
} public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
} public String getRelationman() {
return relationman;
}
public void setRelationman(String relationman) {
this.relationman = relationman;
} public String getOtherInfo() {
return otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
}
}

3.

 package com.sanqing.po;

 import java.util.Date;

 import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType; @Entity @Table(name="tb_order")
public class Order { //订单信息类
@Id @Column(length=10)
private String orderNO; //订单编码
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name="customerNO")
private Customer customer; //客户
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name="productNO")
private Product product; //产品
@Column(length=10)
private int quantity; //产品数量
@Temporal(TemporalType.DATE)
private Date orderTime; //订单的时间
@Column(length=50)
private String otherInfo; //其他信息
public String getOrderNO() {
return orderNO;
}
public void setOrderNO(String orderNO) {
this.orderNO = orderNO;
} public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
} public Product getProduct() {
return product;
}
public void setProduct(Product product) {
this.product = product;
} public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
} public Date getOrderTime() {
return orderTime;
}
public void setOrderTime(Date orderTime) {
this.orderTime = orderTime;
} public String getOtherInfo() {
return otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
}
}

4.

 package com.sanqing.po;

 import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table; @Entity @Table(name="tb_product")
public class Product { //产品信息类
@Id @Column(length=15)
private String productNO; //产品编号
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name="producttypeNO")
private ProductType productType;//产品类型
@Column(length=20)
private String productName; //产品名称
@Column(length=20)
private String producingArea; //产品所在区域
@Column(length=20)
private String productOwner; //产品所有者
@Column(length=20)
private String unit; //产品单位
@Column
private double price; //产品价格
@Column
private int quantity; //产品数量
@Column(length=50)
private String otherInfo; //其他信息 public String getProductNO() {
return productNO;
}
public void setProductNO(String productNO) {
this.productNO = productNO;
} public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
} public String getProducingArea() {
return producingArea;
}
public void setProducingArea(String producingArea) {
this.producingArea = producingArea;
} public String getProductOwner() {
return productOwner;
}
public void setProductOwner(String productOwner) {
this.productOwner = productOwner;
} public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
} public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
} public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
} public String getOtherInfo() {
return otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
} public ProductType getProductType() {
return productType;
}
public void setProductType(ProductType productType) {
this.productType = productType;
}
}

5.

 package com.sanqing.po;

 import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table; @Entity @Table(name="tb_producttype")
public class ProductType { //产品类别信息
private String producttypeNO; //产品类别编号
private String producttypeName; //产品类别名称
public ProductType(){} //默认构造方法
public ProductType(String producttypeNO) {//自定义构造方法
this.producttypeNO = producttypeNO;
}
@Id @Column(length=15)
public String getProducttypeNO() {//获得产品类别编号
return producttypeNO;
}
public void setProducttypeNO(String producttypeNO) {//设置产品类别编号
this.producttypeNO = producttypeNO;
}
@Column(length=20)
public String getProducttypeName() {//获得产品类别名称
return producttypeName;
}
public void setProducttypeName(String producttypeName) {//设置产品类别名称
this.producttypeName = producttypeName;
}
}

6.

 package com.sanqing.po;

 import java.util.Date;

 import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType; @Entity @Table(name="tb_quotation")
public class Quotation { //报价信息类
@Id @Column(length=15)
private String quotationNO; //报价编号
@Column(length=15)
private String quotationMan; //报价人
@Temporal(TemporalType.DATE)
private Date quotationTime; //报价时间
@Column(length=50)
private String otherInfo; //其他信息
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name="productNO")
private Product product ; //产品
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name="customerNO")
private Customer customer; //客户 public String getQuotationNO() {
return quotationNO;
}
public void setQuotationNO(String quotationNO) {
this.quotationNO = quotationNO;
} public String getQuotationMan() {
return quotationMan;
}
public void setQuotationMan(String quotationMan) {
this.quotationMan = quotationMan;
} public Date getQuotationTime() {
return quotationTime;
}
public void setQuotationTime(Date quotationTime) {
this.quotationTime = quotationTime;
} public String getOtherInfo() {
return otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
} public Product getProduct() {
return product;
}
public void setProduct(Product product) {
this.product = product;
} public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
}

7.

 package com.sanqing.po;

 import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Id;
import javax.persistence.Table; @Entity @Table(name="tb_user")
public class User { //用户信息类
@Id @Column(length=18)
private String username; //用户名
@Column(length=18)
private String password; //用户密码
@Column
private int grade; //用户级别 public String getUsername() {
return username;
} public void setUsername(String username) {
this.username = username;
} public String getPassword() {
return password;
} public void setPassword(String password) {
this.password = password;
} public int getGrade() {
return grade;
} public void setGrade(int grade) {
this.grade = grade;
}
}

JavaWeb项目开发案例精粹-第6章报价管理系统-06po层的更多相关文章

  1. JavaWeb项目开发案例精粹-第6章报价管理系统-05Action层

    0. <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC &quo ...

  2. JavaWeb项目开发案例精粹-第6章报价管理系统-07View层

    1. 2.back_index.html <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT= ...

  3. JavaWeb项目开发案例精粹-第6章报价管理系统-04Service层

    1. package com.sanqing.service; import com.sanqing.dao.DAO; import com.sanqing.po.Customer; /** * 客户 ...

  4. JavaWeb项目开发案例精粹-第6章报价管理系统-03Dao层

    1. package com.sanqing.dao; import java.io.Serializable; import java.util.LinkedHashMap; import com. ...

  5. JavaWeb项目开发案例精粹-第6章报价管理系统-002辅助类及配置文件

    1. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www ...

  6. JavaWeb项目开发案例精粹-第6章报价管理系统-001需求分析及设计

    1. 2. 3. 4. 5. 6.

  7. JavaWeb项目开发案例精粹-第2章投票系统-006view层

    1.index.jsp <%@ page language="java" import="java.util.*" pageEncoding=" ...

  8. JavaWeb项目开发案例精粹-第2章投票系统-004action层

    1. package com.sanqing.action; import java.util.UUID; import com.opensymphony.xwork2.ActionSupport; ...

  9. JavaWeb项目开发案例精粹-第2章投票系统-003Dao层

    1. package com.sanqing.dao; import java.util.List; import com.sanqing.bean.Vote; import com.sanqing. ...

随机推荐

  1. 触发器(trigger)的作用???

    1.触发器,英文名trigger,可以简单的理解为: 就相当于是一个事件的触发装置,当满足了一定的事件触发条件后进行相应的操作 例如当复位set信号到来时,我们就让A<=B,这样一个系统就是一个 ...

  2. 【转载】set_input_delay和set_output_delay的选项-max和-min的讨论

    转自:http://www.cnblogs.com/freshair_cnblog/archive/2012/09/12/2681060.html 一.存在背景分析 文档的说法是,set_input_ ...

  3. 关于VS2010error RC2170 : bitmap file res\tmp1.bmp is not in 3.00 format

      我们有时候向VS中的程序插入图片,会出现如下错误: 这是VS的一个bug,对于不能识别的资源,添加的时候,VS会弹出一个对话框让你填类型,这个类型其实是字符串表示,而不是像内置类型,例如整数. 解 ...

  4. 查mysql字段中的数字记录

    select * from a where nameregexp '^[0-9]+$' ;

  5. 连接db2数据库时NumberFormatException异常的解决方式

    连接db2数据库时报异常:java.lang.NumberFormatException: For input string: "A" from a DB2 JDBC(JCC) j ...

  6. ExtJS登陆页面涉及到的几个问题

    1.如何在文本框中增加提示信息      输入框中无法直接使用tooltip,需要使用单独的代码 var tip = Ext.create('Ext.tip.ToolTip', { target : ...

  7. Visual Studio 2013

    1.How to hide reference counts in VS2013? Tools--> Options --> Text Editor --> All Language ...

  8. 使用HTML5中的element.dataset操作自定义data-*数据

    不久之前我向大家展示了非常有用的classList API,它是一种HTML5里提供的原生的对页面元素的CSS类进行增.删改的接口,完全可以替代jQuery里的那些CSS类操作方法.而另外一个非常有用 ...

  9. Ubuntu 下编译安装linux

    1. 准备工作切换为管理员权限,sudo –i 输入用户密码 进入root 权限apt-get install build-essential kernel-package libncurses5-d ...

  10. hdu 4046 Panda 树状数组

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4046 When I wrote down this letter, you may have been ...