spring_150901_hibernate_transaction_xml】的更多相关文章

实体类: package com.spring.model; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="t_dog") public class DogPet { private int id; private String name; private int age; private String…