簡體   English   中英

Derby嵌入式數據庫不持久

[英]Derby embedded database not persisting

我正在嘗試將嵌入式數據庫derby與spring框架一起使用。 我可以插入數據並讀取它。 除了數據庫不持久的一件事以外,其他所有東西都可以正常工作。 當我關閉應用程序並再次運行時,數據不存在。 我猜數據庫是再次創建,但不知道為什么。

我的代碼:

@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();
    }

}
}

彈簧輸出的日志是

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的內容是

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
);

解決方案:接受的答案指向正確的方向,但錯誤是some-db; create = true無法啟動。 然后,我研究了Netbeans IDE如何創建derby連接。 問題是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;
}

如果表已經存在,則腳本create-db.sql可能會出錯,因為在derby中沒有IF EXISTS,因此將其包裝在try-catch中。

Bean的datasourceInitializer明確命名為“ Application.dataSourceInitializer”,因為spring自動配置會覆蓋它。 在這里檢查

這是您問題的核心: jdbc:derby:memory:some-db;create=true

當您在Derby JDBC連接URL中說“內存”時,您在明確地告訴Derby創建一個非持久數據庫。

如果從JDBC Connectino URL中刪除“ memory:”,則Derby將在硬盤的“ some-db”目錄中創建一個持久的持久數據庫。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM