美文网首页
hibernate.cfg.xml

hibernate.cfg.xml

作者: kindol | 来源:发表于2018-03-05 20:20 被阅读0次
    • 定义hibernate配置信息
    • connection.driver_class,connection.url,connection.username和connection.password定义JDBC连接信息
    • connection.pool_size配置Hibernate内置连接池中的连接数量
    • dialect指明与hibernate关联的SQL变体(比如MYSQL、H2等)
    • hbm2ddl.auto设置为create表示支持将数据库模式直接自动生成到数据库中(每次都会覆盖原来的数据),设置为update则会插入而不覆盖源数据库的数据
    • show_sql表示打印所有sql执行语句
    • mapping中的resources会导致Hibernate尝试使用java.lang.ClassLoader查找将该映射定位为类路径资源,也就是自定义的类映射为数据库中的table;而class则表示已经与数据库关联的类,存在这样一种映射

    相关文章

      网友评论

          本文标题:hibernate.cfg.xml

          本文链接:https://www.haomeiwen.com/subject/jzqkfftx.html