使用 Derby 配置 Spring-Boot Autowired JdbcTemplate

Posted

技术标签:

【中文标题】使用 Derby 配置 Spring-Boot Autowired JdbcTemplate【英文标题】:Configuring Spring-Boot Autowired JdbcTemplate with Derby 【发布时间】:2016-02-23 22:42:04 【问题描述】:

我已将gs-relational-data-access-complete 的副本克隆到我的工作区,下载了Apache Derby 的独立副本并启动它“./bin/startNetworkServer”。

我想指出我的 Spring Boot 项目使用 Apache Derby 的外部实例,而不是 Spring Boot 使用的默认嵌入式 H2 数据库。为了节省时间,我想使用 Spring Boot @Autowired 注解。

当我发布 Derby 的新副本时,没有问题:

./bin/startNetworkServer

2015 年 11 月 21 日星期六 11:11:06 GMT:使用基本服务器安全策略安装的安全管理器。

2015 年 11 月 21 日星期六 11:11:06 GMT:Apache Derby 网络服务器 - 10.12.1.1 - (1704137) 已启动并准备好接受端口 1527 上的连接

当我启动 Spring Boot 应用程序时出现问题:

2015-11-21 11:55:07.312 ERROR 11361 --- [main] o.a.tomcat.jdbc.pool.ConnectionPool : 无法创建池的初始连接。

java.sql.SQLException: Driver:org.apache.derby.jdbc.EmbeddedDriver@db9d03fc 为 URL 返回 null:jdbc:derby://10.12.1.1:1527/example1;create=true;user=test1;password =通过1

在 org.apache.tomcat.jdbc.pool.PooledConnection.connectUsingDriver(PooledConnection.java:326) ~[tomcat-jdbc-8.0.28.jar:na]

任何有关如何在仍然利用 Spring Boot @Autowired 注释的同时解决此问题的帮助将不胜感激。

我的工作空间如下:

pom.xml
src/main/java/hello
----Application.java
----Customer.java
src/main/resources
----application.properties

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.springframework</groupId>
<artifactId>gs-relational-data-access</artifactId>
<version>0.1.0</version>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.0.RELEASE</version>
</parent>

<properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
    </dependency>
    
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.apache.derby</groupId>
        <artifactId>derby</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-configuration-processor</artifactId>
        <optional>true</optional>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

application.properties:

spring.datasource.url=jdbc:derby://10.12.1.1:1527/example1;create=true;user=test1;password=pass1
spring.datasource.username=test1
spring.datasource.password=pass1

Application.java:

package hello;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.jdbc.core.JdbcTemplate;

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

@SpringBootApplication
public class Application implements CommandLineRunner 

    private static final Logger log = LoggerFactory.getLogger(Application.class);

    public static void main(String args[]) 
        SpringApplication.run(Application.class, args);
    
    
    @Autowired
    JdbcTemplate jdbcTemplate;

【问题讨论】:

那个 JDBC URL 对我来说看起来很奇怪。也许the doc 会有所帮助(或the examples)? 没有“默认 H2 嵌入式”数据库。默认情况下,您添加到项目中的任何嵌入式数据库都将自动配置(H2、HSQL、Derby)。因此,如果您只添加 derby,我们会为您自动配置。 【参考方案1】:

这是不匹配的:

Driver:org.apache.derby.jdbc.EmbeddedDriver@db9d03fc returned null 
for URL:jdbc:derby://10.12.1.1:1527/example1;create=true;user=test1;password=pass1

您指定使用 Derby 嵌入式驱动程序,但您已为 Derby 提供了数据库的 client-server URL。

Derby 正在检测该不匹配并拒绝您的连接尝试。

如果您想使用 client-server URL,您需要使用 Derby ClientDriver 类,并且您的 CLASSPATH 中需要有 derbyclient.jar。

如果要使用内嵌驱动,需要使用内嵌驱动URL,如

jdbc:derby:example1;create=true;user=test1;password=pass1

【讨论】:

我接受这可以解决特定问题,谢谢!所需的库位于 derby lib 文件夹中。我将以下内容添加到 application.properties:spring.datasource.driver-class-name=org.apache.derby.jdbc.ClientDriver 我现在遇到了一个不同的问题,但会在另一个问题中打开它。 2015-11-21 20:43:35.633 INFO 4773 --- [main] .b.l.ClasspathLoggingApplicationListener:应用程序无法使用类路径启动:应用程序启动失败 java.lang.IllegalStateException:无法执行 CommandLineRunner 通过切换到 h2 并编辑 pom.xml 和 application.properties 我解决了所有问题,项目现在运行没有问题。 pom.xml: " com.h2databaseh2compile" application.properties: spring.datasource.url=jdbc :h2:tcp://localhost/test【参考方案2】:

改变

<dependency>
    <groupId>org.apache.derby</groupId>
    <artifactId>derby</artifactId>
</dependency>

通过

<dependency>
    <groupId>org.apache.derby</groupId>
    <artifactId>derbyclient</artifactId>
    <version>10.13.1.1</version>
</dependency>

在配置中:

spring.datasource.url=jdbc:derby://10.12.1.1:1527/example1;create=true
spring.datasource.username=test1
spring.datasource.password=pass1
spring.datasource.driver-class-name=org.apache.derby.jdbc.ClientDriver

问题是derby依赖是嵌入式数据库,需要客户端依赖。

【讨论】:

以上是关于使用 Derby 配置 Spring-Boot Autowired JdbcTemplate的主要内容,如果未能解决你的问题,请参考以下文章

Derby数据库的安装配置及使用

Nacos源码1.4.1配置中心-Derby集群模式

德比的Derby数据库

「hive」hive2.3.0配置derby

Derby安装步骤及使用教程

Spring Boot JDBC derby 在内存中的配置问题