我从春季https://spring.io/guides/gs/batch-processing/开始关注本指南。
只要我使用hsql,一切正常,但我想切换到mysql。问题是spring总是试图启动并使用hsql实例。
以下是代码:
hello.ressources中的application.properties:
spring.datasource.url=jdbc:mysql://xxx:3306/xxx
spring.datasource.username=user
spring.datasource.password=pass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
hello.ressources中的datasource.xml
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="dataSource" name="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://xxx:3306/xxx" />
<property name="username" value="user" />
<property name="password" value="pass" />
</bean>
</beans>
在我的BatchConfiguration类中,有一个@Autowired
属性
@Autowired
public DataSource dataSource;
Intelij将其显示为已连接到datasource.xml
。
但是,当我运行应用程序时,它首先记录
o.s.j.d.e.EmbeddedDatabaseFactory : Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa'
不应出现,然后抛出错误说:
PreparedStatementCallback;错误的SQL语法[INSERT INTO people(first_name,last_name)VALUES(?,?)];嵌套异常是java.sql.SQLSyntaxErrorException:user缺少未找到的权限或对象:PEOPLE
我已将schema-all.sql更改为schema-mysql.sql并将代码更改为
DROP TABLE IF EXISTS people;
CREATE TABLE people (
person_id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT ,
first_name VARCHAR(20),
last_name VARCHAR(20)
);
在我的build.gradle中添加了
classpath 'mysql:mysql-connector-java:5.1.6'
到构建依赖项并将hsql部分从compile deps更改为
compile("mysql:mysql-connector-java:5.1.6")
我如何在这里使用mysql并禁用hsql?
编辑:
我删除了datasource.xml。
这是build.gradle:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.5.RELEASE")
classpath 'mysql:mysql-connector-java:5.1.6'
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-batch-processing'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-batch")
compile("mysql:mysql-connector-java:5.1.6")
testCompile("junit:junit")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
答案 0 :(得分:0)
你采取的步骤应该足以使spring-boot使用mysql。
我发现你使用的是spring-batch,它还附带了一个hsql依赖项。如果可能有第二个数据源初始化,你有没有检查过日志?可能是你看到的hsql init是spring-batch试图为其元数据设置数据源。
也
你试过添加
吗?spring.datasource.platform=mysql
到application.properties?