articledao.java

来自「hibernate框架例子程序」· Java 代码 · 共 30 行

JAVA
30
字号
package com.redsaga.hibernatesample.step4.dao;

import org.apache.log4j.Logger;

import java.sql.Connection;

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

import com.redsaga.hibernatesample.step4.Article;
import com.redsaga.hibernatesample.step4.base.BaseArticleDAO;

/**
 * This class has been automatically generated by Hibernate Synchronizer.
 * For more information or documentation, visit The Hibernate Synchronizer page
 * at http://www.binamics.com/hibernatesync or contact Joe Hudson at joe@binamics.com.
 *
 * This is the object class that relates to the article table.
 * Any customizations belong here.
 */
public class ArticleDAO extends BaseArticleDAO {
	/**
	 * Logger for this class
	 */
	private static final Logger logger = Logger.getLogger(ArticleDAO.class);


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?