mysql - 数据库中未创建表

标签 mysql hibernate

我正在使用下面的 hibernate 配置,当我从 Postman 客户端调用 create 方法时,我得到的是 SQLGrammerException,而不是创建表并将值插入数据库。请检查下面的配置并让我知道我可以做什么来创建表并更新它?

配置文件-

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
    <bean id="dbPropertyConfigurer"
            class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>/WEB-INF/db_config.properties</value>
            </list>
        </property>
    </bean>
    <!-- Database Properties -->
    <bean id="dataSource"
        class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"
                p:driverClass="${jdbc.driver.className}"
                p:jdbcUrl="${jdbc.url}"
                p:user="${jdbc.username}"
                p:password="${jdbc.password}"               
                />
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${jdbc.hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hbm2ddl.auto">update</prop>
            </props>
        </property>
        <property name="packagesToScan" value="com.entity" />
    </bean>
    <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
    <tx:annotation-driven transaction-manager="transactionManager" />
</beans>

Pojo类包含用于定义列和主键的JPA注释@Id、@Column以及用于定义表和实体值的@Entity和@Table。

最佳答案

实际上,上述配置是不正确的。

<prop key="hbm2ddl.auto">update</prop>

上面应该是 -

<prop key="hibernate.hbm2ddl.auto">update</prop>

就这样完成了。

关于mysql - 数据库中未创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34348424/

相关文章:

java - Hibernate/JPA - 仅在表存在时才对表进行操作

java - 如何像 Laravel 一样创建 HQL 查询?

mysql - Wordpress wp_set_object_terms SQL 错误

php - PDO 代码不起作用

mysql - 在 SELECT 中重命名列多个 id

java - jboss 下的多个数据库可供读取

php - 升级到 MySQLi - 就像将 mysql 换成 mysqli 一样简单?

php - 如何在 sql 查询 VALUES 中包含分号?

java - EhCache 的 JGROUP 中出现错误,删除消息发送者不在表中

hibernate - BigDecimal 0.000 到 0