Spring MVC Spring + Hibernate + H2嵌入式数据库,如何保存数据?

yi0zb3m4  于 2022-11-14  发布在  Spring
关注(0)|答案(1)|浏览(119)

我是嵌入式数据库的新手,但我至少让它运行了。让我困惑的是,我的数据在运行之间没有保存。我的意思是,这对测试来说不是很好吗?我不想每次运行应用程序时都向数据库中添加数据
因此,我搜索了一种方法来做到这一点,我发现我应该配置一个休眠连接URL,我尝试这样

props.put("hibernate.connection.url", "jdbc:h2:~/test");

在我的HibernateConfiguration.java中。虽然没有成功,但没有错误,也没有保存任何内容,而且我没有找到应该从该URL创建的测试文件。(运行windows并检查我的用户文件夹)
我也看到了这样做的可能性

<jdbc:embedded-database id="dataSource" type="H2">
    <jdbc:script location="classpath:db-schema.sql"/>
    <jdbc:script location="classpath:db-test-data.sql"/>
</jdbc:embedded-database>

每次运行应用程序时都执行脚本,但问题是我希望Hibernate处理所有表的创建等。
这通常是如何完成的?
我找了几个小时,但还是没有找到。
附言。如果需要的话,我会发布我所有的配置。

**编辑:**更新了我得问题,使其集中在一个问题上,并包含了我得配置.

HibernateConfiguration.java 的内容。课程信息。项目;

import java.util.Properties;

import javax.sql.DataSource;

import org.hibernate.dialect.H2Dialect;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.orm.hibernate3.HibernateTransactionManager;
import org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean;

import com.courseinfo.project.model.Course;

@Configuration
public class HibernateConfiguration {

    @Value("#{dataSource}")
    private DataSource dataSource;

    @Bean
    public AnnotationSessionFactoryBean sessionFactoryBean() {
        Properties props = new Properties();
        props.put("hibernate.dialect", H2Dialect.class.getName());
        props.put("hibernate.format_sql", "true");
        props.put("hibernate.connection.url", "jdbc:h2:~/test");

        AnnotationSessionFactoryBean bean = new AnnotationSessionFactoryBean();
        bean.setAnnotatedClasses(new Class[]{Course.class});        
        bean.setHibernateProperties(props);
        bean.setDataSource(this.dataSource);
        bean.setSchemaUpdate(true);
        return bean;
    }

    @Bean
    public HibernateTransactionManager transactionManager() {
        return new HibernateTransactionManager( sessionFactoryBean().getObject() );
    }

}

servlet-context.xml,其中我只添加了嵌入式数据库标记。

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/jdbc
        http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd"
        default-lazy-init="true">

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <context:component-scan base-package="com.courseinfo.project" />

    <jdbc:embedded-database id="dataSource" type="H2"/>

</beans:beans>

当然也有一个pom,我得到了所有的依赖关系,但我不认为这是必要的。
我创建了一个对象(Course.java)并将其保存到数据库中,这很好,我可以再次加载它。但是当我更改代码并重新加载应用程序时,该对象不再存在。

Edit 2:我正在添加这样的数据。

绑定会话工厂。

@Autowired
private SessionFactory sessionFactory;

向数据库中添加一个my Course对象,如下所示。

Course course = new Course();
course.setCourseId("IDA512");
Session s = sessionFactory.openSession();
s.saveOrUpdate(course);
s.flush();
s.clear();
Course course2 = (Course) s.get(Course.class, "IDA511");
s.close();

这工作正常,我可以得到该课程。但是,当我下次运行应用程序时,没有id为IDA 511的课程,我得到一个空指针异常。这是否意味着该课程可能只保存在会话中?哼

axr492tv

axr492tv1#

因为您是在Windows上执行应用程序,所以使用波状符号'~'运算子可能找不到主目录。
尝试为hib.connection.url属性指定一个绝对路径,例如“C:\test”,并在运行应用程序时检查该文件夹,以查看H2是否为您创建了一个文件。

相关问题