简体   繁体   English

Derby嵌入式数据库不持久

[英]Derby embedded database not persisting

I am trying to use embedded database derby with spring framework. 我正在尝试将嵌入式数据库derby与spring框架一起使用。 I can insert the data and read it. 我可以插入数据并读取它。 Everything works completely fine except for one thing that the database is not persisting. 除了数据库不持久的一件事以外,其他所有东西都可以正常工作。 When I close the application and run it again the data is not present. 当我关闭应用程序并再次运行时,数据不存在。 I am guessing that the database is created again but don't know why. 我猜数据库是再次创建,但不知道为什么。

My code: 我的代码:

@Configuration
@ComponentScan
@EnableAutoConfiguration

public class MainClass 

{
@Bean
public DataSource dataSource() 
{

        // no need shutdown, EmbeddedDatabaseFactoryBean will take care of this
        EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder();
        EmbeddedDatabase db = builder
                .setType(EmbeddedDatabaseType.DERBY) //.HSQL, .H2 or .DERBY
                .setName("some-db")
                .addScript("/create-db.sql")
                .build();
        return db;
}

@Bean
public DataSourceTransactionManager transactionManager(DataSource dataSource)
{
    DataSourceTransactionManager d = new DataSourceTransactionManager(dataSource);
    return d;
}

public static void main(String[] args) 
{

    ConfigurableApplicationContext context = new SpringApplicationBuilder(MainClass.class).headless(false).run(args);
    MainFrame.mf = context.getBean(MainFrame.class);
    MainFrame.mf.setVisible(true);
    UserService userService = new UserService();

    if(userService.isSignedIn())
    {
        MainFrame.mf.loggedIn();
    }
    else
    {
        MainFrame.mf.loggedOut();
    }

}
}

And output logs by spring are 弹簧输出的日志是

2017-09-17 20:41:53.461  INFO 3516 --- [           main] com.some.MainClass                      : Starting MainClass on maker with PID 3516 (C:\..\NetbeansProjects\..\target\classes started by verma in C:\..\NetbeansProjects\proj)
2017-09-17 20:41:53.469  INFO 3516 --- [           main] com.some.MainClass                      : No active profile set, falling back to default profiles: default
2017-09-17 20:41:53.571  INFO 3516 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2df32bf7: startup date [Sun Sep 17 20:41:53 IST 2017]; root of context hierarchy
2017-09-17 20:41:56.974  INFO 3516 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-09-17 20:41:57.007  INFO 3516 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2017-09-17 20:41:57.010  INFO 3516 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.16
2017-09-17 20:41:57.278  INFO 3516 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2017-09-17 20:41:57.279  INFO 3516 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3714 ms
2017-09-17 20:41:57.606  INFO 3516 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2017-09-17 20:41:57.616  INFO 3516 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-09-17 20:41:57.618  INFO 3516 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-09-17 20:41:57.618  INFO 3516 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-09-17 20:41:57.619  INFO 3516 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2017-09-17 20:41:58.028  INFO 3516 --- [           main] o.s.j.d.e.EmbeddedDatabaseFactory        : Starting embedded database: url='jdbc:derby:memory:some-db;create=true', username='sa'
2017-09-17 20:41:58.883  INFO 3516 --- [           main] o.s.jdbc.datasource.init.ScriptUtils     : Executing SQL script from class path resource [create-db.sql]
2017-09-17 20:41:59.248  INFO 3516 --- [           main] o.s.jdbc.datasource.init.ScriptUtils     : Executed SQL script from class path resource [create-db.sql] in 365 ms.
2017-09-17 20:42:00.907  INFO 3516 --- [           main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2df32bf7: startup date [Sun Sep 17 20:41:53 IST 2017]; root of context hierarchy
2017-09-17 20:42:01.052  INFO 3516 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/login],methods=[POST]}" onto java.util.Map com.some.connection.ConnectionController.login(java.lang.String)
2017-09-17 20:42:01.055  INFO 3516 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/logout],methods=[POST]}" onto org.springframework.http.ResponseEntity com.some.connection.ConnectionController.logout(java.lang.String)
2017-09-17 20:42:01.062  INFO 3516 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-09-17 20:42:01.063  INFO 3516 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-09-17 20:42:01.153  INFO 3516 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-17 20:42:01.155  INFO 3516 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-17 20:42:01.250  INFO 3516 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-17 20:42:01.717  INFO 3516 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2017-09-17 20:42:01.829  INFO 3516 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-09-17 20:42:01.840  INFO 3516 --- [           main] com.some.MainClass                      : Started MainClass in 9.034 seconds (JVM running for 9.794)
2017-09-17 20:42:06.305  INFO 3516 --- [       Thread-6] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2df32bf7: startup date [Sun Sep 17 20:41:53 IST 2017]; root of context hierarchy
2017-09-17 20:42:06.314  INFO 3516 --- [       Thread-6] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown
2017-09-17 20:42:06.348  INFO 3516 --- [       Thread-6] o.s.j.d.e.EmbeddedDatabaseFactory        : Shutting down embedded database: url='jdbc:derby:memory:some-db;create=true'

create-db.sql contents are create-db.sql的内容是

CREATE TABLE table_connection
(
id BIGINT PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
ip VARCHAR(50) UNIQUE,
sessionId VARCHAR(50) DEFAULT NULL
);

SOLUTION: Accepted answer pointed in right direction but the error was some-db;create=true failed to start. 解决方案:接受的答案指向正确的方向,但错误是some-db; create = true无法启动。 Then I looked at how Netbeans IDE was creating the derby connection. 然后,我研究了Netbeans IDE如何创建derby连接。 Problem was create=true, I think it's not supposed to be sent with the url but with properties as show in code below: 问题是create = true,我认为它不应该与url一起发送,而应具有如下代码所示的属性:

@Bean
public DataSource dataSource()
{
    DriverManagerDataSource dm = new DriverManagerDataSource("jdbc:derby:some-db", "root", "root");

    Properties properties = new Properties();
    properties.setProperty("create", "true");

    dm.setConnectionProperties(properties);
    dm.setSchema("APP");
    dm.setDriverClassName("org.apache.derby.jdbc.EmbeddedDriver");

    return dm;
}

@Bean(name="Application.dataSourceInitializer")
public DataSourceInitializer dataSourceInitializer(DataSource dataSource) 
{
    final DataSourceInitializer initializer = new DataSourceInitializer();
    initializer.setDataSource(dataSource);
    try
    {
        JdbcTemplate jdbc = new JdbcTemplate(dataSource);
        jdbc.queryForList("SELECT id FROM table_connection");
    }
    catch(Exception e)
    {
        initializer.setDatabasePopulator(databasePopulator());
    }
    return initializer;
}

@Value("classpath:create-db.sql")
private Resource schemaScript;

private DatabasePopulator databasePopulator() 
{
    final ResourceDatabasePopulator populator = new ResourceDatabasePopulator();
    populator.addScript(schemaScript);
    return populator;
}

Script create-db.sql can give error if table already exists as no IF EXISTS in derby so wrapped it in try-catch. 如果表已经存在,则脚本create-db.sql可能会出错,因为在derby中没有IF EXISTS,因此将其包装在try-catch中。

Bean datasourceInitializer is named explicitly 'Application.dataSourceInitializer' as spring auto-configuration tends to override it. Bean的datasourceInitializer明确命名为“ Application.dataSourceInitializer”,因为spring自动配置会覆盖它。 Check it here. 在这里检查

This is the core of your problem: jdbc:derby:memory:some-db;create=true 这是您问题的核心: jdbc:derby:memory:some-db;create=true

When you say 'memory' in your Derby JDBC Connection URL, you are telling Derby explicitly to make a non-durable database. 当您在Derby JDBC连接URL中说“内存”时,您在明确地告诉Derby创建一个非持久数据库。

If you remove the 'memory:' from your JDBC Connectino URL, Derby will create a persistent, durable database in the 'some-db' directory on your hard disk. 如果从JDBC Connectino URL中删除“ memory:”,则Derby将在硬盘的“ some-db”目录中创建一个持久的持久数据库。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM