zoukankan      html  css  js  c++  java
  • 使用JDBCTemplate实现与Spring结合,方法公用

           该篇博文主要是体现了接口和类的公用性,

    Emp的实体类:

    package org.entity;
    
    import java.util.Date;
    
    /**
     * Emp entity. @author MyEclipse Persistence Tools
     */
    
    public class Emp implements java.io.Serializable {
    
    	// Fields
    
    	private Integer empno;
    	private String ename;
    	private String job;
    	private Short mgr;
    	private Date hiredate;
    	private Double sal;
    	private Double comm;
    
    
    	/** default constructor */
    	public Emp() {
    	}
    
    	/** minimal constructor */
    	public Emp(Integer empno) {
    		this.empno = empno;
    	}
    
    
    	// Property accessors
    
    	public Integer getEmpno() {
    		return this.empno;
    	}
    
    	public void setEmpno(Integer empno) {
    		this.empno = empno;
    	}
    
    
    	public String getEname() {
    		return this.ename;
    	}
    
    	public void setEname(String ename) {
    		this.ename = ename;
    	}
    
    	public String getJob() {
    		return this.job;
    	}
    
    	public void setJob(String job) {
    		this.job = job;
    	}
    
    	public Short getMgr() {
    		return this.mgr;
    	}
    
    	public void setMgr(Short mgr) {
    		this.mgr = mgr;
    	}
    
    	public Date getHiredate() {
    		return this.hiredate;
    	}
    
    	public void setHiredate(Date hiredate) {
    		this.hiredate = hiredate;
    	}
    
    	public Double getSal() {
    		return this.sal;
    	}
    
    	public void setSal(Double sal) {
    		this.sal = sal;
    	}
    
    	public Double getComm() {
    		return this.comm;
    	}
    
    	public void setComm(Double comm) {
    		this.comm = comm;
    	}
    
    }


  • 相关阅读:
    struts2 constant详解
    大图片上传(ImageIO,注意有的图片不能上传时因为他是tiff格式)
    Spring提供的iBatis的SqlMap配置
    2013-7-31hibernate二级缓存
    2013-7-30。。。。难得闲
    POI导出大量数据的简单解决方案
    Tomcat优化详细2
    Tomcat优化详细1
    Tomcat优化方案
    java链表实现
  • 原文地址:https://www.cnblogs.com/a1111/p/7459653.html
Copyright © 2011-2022 走看看