• 吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Hibernate_custom_sql


    <?xml version="1.0" encoding="GBK"?>
    <project name="hibernate" basedir="." default="">
        <property name="src" value="src"/>
        <property name="dest" value="classes"/>
    
        <path id="classpath">
            <fileset dir="../../lib">
                <include name="**/*.jar"/>
            </fileset>
            <pathelement path="${dest}"/>
        </path>
    
        <target name="compile" description="Compile all source code">
            <delete dir="${dest}"/>
            <mkdir dir="${dest}"/>
            <copy todir="${dest}">
                <fileset dir="${src}">
                    <exclude name="**/*.java"/>
                </fileset>        
            </copy>
            <javac destdir="${dest}" debug="true" includeantruntime="yes"
                deprecation="false" optimize="false" failonerror="true">
                <src path="${src}"/>
                <classpath refid="classpath"/>
                <compilerarg value="-Xlint:deprecation"/>
            </javac>
        </target>
    
        <target name="run" description="Run the main class" depends="compile">
            <java classname="lee.NewsManager" fork="yes" failonerror="true">
                <classpath refid="classpath"/>
            </java>
        </target>
    
    </project>
    <?xml version="1.0" encoding="GBK"?>
    <!-- 指定Hibernate配置文件的DTD信息 -->
    <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
    <!-- hibernate-configuration是配置文件的根元素 -->
    <hibernate-configuration>
        <session-factory>
            <!-- 指定连接数据库所用的驱动 -->
            <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
            <!-- 指定连接数据库的url,其中hibernate是本应用连接的数据库名 -->
            <property name="connection.url">jdbc:mysql://localhost/hibernate</property>
            <!-- 指定连接数据库的用户名 -->
            <property name="connection.username">root</property>
            <!-- 指定连接数据库的密码 -->
            <property name="connection.password">32147</property>
            <!-- 指定连接池里最大连接数 -->
            <property name="hibernate.c3p0.max_size">20</property>
            <!-- 指定连接池里最小连接数 -->
            <property name="hibernate.c3p0.min_size">1</property>
            <!-- 指定连接池里连接的超时时长 -->
            <property name="hibernate.c3p0.timeout">5000</property>
            <!-- 指定连接池里最大缓存多少个Statement对象 -->
            <property name="hibernate.c3p0.max_statements">100</property>
            <property name="hibernate.c3p0.idle_test_period">3000</property>
            <property name="hibernate.c3p0.acquire_increment">2</property>
            <property name="hibernate.c3p0.validate">true</property>
            <!-- 指定数据库方言 -->
            <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
            <!-- 根据需要自动创建数据库 -->
            <property name="hbm2ddl.auto">update</property>
            <!-- 显示Hibernate持久化操作所生成的SQL -->
            <property name="show_sql">true</property>
            <!-- 将SQL脚本进行格式化后再输出 -->
            <property name="hibernate.format_sql">true</property>
            <!-- 罗列所有持久化类的类名 -->
            <mapping class="org.crazyit.app.domain.News"/>
        </session-factory>
    </hibernate-configuration>
    package org.crazyit.app.domain;
    
    import javax.persistence.*;
    import org.hibernate.annotations.SQLInsert;
    import org.hibernate.annotations.SQLUpdate;
    import org.hibernate.annotations.SQLDelete;
    import org.hibernate.annotations.SQLDeleteAll;
    import org.hibernate.annotations.SQLDeleteAll;
    import org.hibernate.annotations.Loader;
    /**
     * Description:
     * <br/>网站: <a href="http://www.crazyit.org">疯狂Java联盟</a>
     * <br/>Copyright (C), 2001-2016, Yeeku.H.Lee
     * <br/>This program is protected by copyright laws.
     * <br/>Program Name:
     * <br/>Date:
     * @author  Yeeku.H.Lee kongyeeku@163.com
     * @version  1.0
     */
    // 定制insert的SQL语句
    @SQLInsert(sql="insert into news_inf(content , title) values(upper(?), ?)")
    // 定制update的SQL语句
    @SQLUpdate(sql="update news_inf set content=upper(?), title=? where news_id=?")
    // 定制delete的SQL语句
    @SQLDelete(sql="delete from news_inf where news_id=?")
    // 定制删除所有实体的SQL语句
    @SQLDeleteAll(sql="delete from news_inf")
    // 指定使用news_loader命名查询作为定制查询的查询语句
    @Loader(namedQuery = "news_loader")
    // 定义一个命名SQL查询
    @NamedNativeQuery(name="news_loader"
        , query="select news_id , concat('===' , concat(title , '===')) as title"
            + " , content from news_inf n where news_id=?"
        , resultClass = News.class)
    @Entity
    @Table(name="news_inf")
    public class News
    {
        @Id @Column(name="news_id")
        @GeneratedValue(strategy=GenerationType.IDENTITY)
        private Integer id;
        private String title;
        private String content;
    
        // id的setter和getter方法
        public void setId(Integer id)
        {
            this.id = id;
        }
        public Integer getId()
        {
            return this.id;
        }
    
        // title的setter和getter方法
        public void setTitle(String title)
        {
            this.title = title;
        }
        public String getTitle()
        {
            return this.title;
        }
    
        // content的setter和getter方法
        public void setContent(String content)
        {
            this.content = content;
        }
        public String getContent()
        {
            return this.content;
        }
    
    }
    package lee;
    
    import org.hibernate.*;
    import org.hibernate.cfg.*;
    import org.hibernate.service.*;
    import org.hibernate.boot.registry.*;
    
    import org.crazyit.app.domain.*;
    /**
     * Description:
     * <br/>网站: <a href="http://www.crazyit.org">疯狂Java联盟</a>
     * <br/>Copyright (C), 2001-2016, Yeeku.H.Lee
     * <br/>This program is protected by copyright laws.
     * <br/>Program Name:
     * <br/>Date:
     * @author  Yeeku.H.Lee kongyeeku@163.com
     * @version  1.0
     */
    public class NewsManager
    {
        public static void main(String[] args) throws Exception
        {
            // 实例化Configuration,这行代码默认加载hibernate.cfg.xml文件
            Configuration conf = new Configuration().configure();
            // 以Configuration实例创建SessionFactory实例
            ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()
                .applySettings(conf.getProperties()).build();
            SessionFactory sf = conf.buildSessionFactory(serviceRegistry);
            // 实例化Session
            Session sess = sf.openSession();
            // 开始事务
            Transaction tx = sess.beginTransaction();
    //        // 创建消息实例
    //        News n = new News();
    //        // 设置消息标题和消息内容
    //        n.setTitle("疯狂Java联盟成立了");
    //        n.setContent("疯狂Java联盟成立了,"
    //            + "网站地址http://www.crazyit.org");
    //        // 保存消息
    //        sess.save(n);
            News n2 = (News)sess.get(News.class, 1);
            System.out.println(n2.getTitle());
            n2.setContent("aaaaaaaa");
            // 提交事务
            tx.commit();
            // 关闭Session
            sess.close();
        }
    }
  • 相关阅读:
    禁止logback输出状态信息
    Idea导出可运行Jar包
    K均值算法
    [转]香农信息论与毒药称球问题
    ajax跨域请求
    Python函数的静态变量
    学倦乱语
    [转]被当做狗和鸡来驱赶的百姓
    numpy文件读写的三对函数
    认真把事办砸是一种能力
  • 原文地址:https://www.cnblogs.com/tszr/p/12370036.html
Copyright © 2020-2023  润新知