代码搜索:Hibernate 开发教程
找到约 10,000 项符合「Hibernate 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/163959/5504785
java dog.java
//$Id: Dog.java,v 1.2 2004/09/02 02:28:13 oneovthafew Exp $
package org.hibernate.test.hql;
/**
* @author Gavin King
*/
public class Dog extends DomesticAnimal {
}
www.eeworm.com/read/163959/5504786
java cat.java
//$Id: Cat.java,v 1.2 2004/09/02 02:28:13 oneovthafew Exp $
package org.hibernate.test.hql;
/**
* @author Gavin King
*/
public class Cat extends DomesticAnimal {
}
www.eeworm.com/read/163959/5504787
java domesticanimal.java
//$Id: DomesticAnimal.java,v 1.2 2004/12/06 14:17:23 pgmjsd Exp $
package org.hibernate.test.hql;
/**
* @author Gavin King
*/
public class DomesticAnimal extends Mammal {
private Human owner;
pu
www.eeworm.com/read/163959/5504795
java querytranslatortestcase.java
// $Id: QueryTranslatorTestCase.java,v 1.25 2005/02/27 13:57:59 oneovthafew Exp $
package org.hibernate.test.hql;
import java.sql.Connection;
import java.sql.ParameterMetaData;
import java.sql.Prepar
www.eeworm.com/read/163959/5504796
java reptile.java
//$Id: Reptile.java,v 1.3 2005/02/12 07:27:25 steveebersole Exp $
package org.hibernate.test.hql;
/**
* @author Gavin King
*/
public class Reptile extends Animal {
private float bodyTemperature;
www.eeworm.com/read/163959/5504802
java lizard.java
//$Id: Lizard.java,v 1.1 2004/06/03 16:31:32 steveebersole Exp $
package org.hibernate.test.hql;
/**
* @author Gavin King
*/
public class Lizard extends Reptile {
}
www.eeworm.com/read/163959/5504804
java alltests.java
//$Id: AllTests.java,v 1.45 2005/04/11 18:35:07 steveebersole Exp $
package org.hibernate.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
import
www.eeworm.com/read/163959/5504809
java querycachetest.java
//$Id: QueryCacheTest.java,v 1.7 2005/03/23 19:52:23 maxcsaucdk Exp $
package org.hibernate.test.querycache;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestSuite;
im
www.eeworm.com/read/163959/5504816
java mergetest.java
//$Id: MergeTest.java,v 1.5 2005/02/21 14:41:02 oneovthafew Exp $
package org.hibernate.test.ops;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.hibernate.Session;
import
www.eeworm.com/read/163959/5504818
java numberednode.java
//$Id: NumberedNode.java,v 1.2 2005/02/12 07:27:30 steveebersole Exp $
package org.hibernate.test.ops;
/**
* @author Gavin King
*/
public class NumberedNode extends Node {
private long id;
pub