6

这似乎是一个愚蠢的问题。我正在尝试为 Spring Batch Job Repository (Spring Batch 2.1.7) 配置 Oracle10g 数据库,我能够使用org/springframework/batch/core/schema-oracle10g.sql中可用的脚本创建表。我还将属性batch.data.source.init设置为false

在一个干净的数据库上,我的批处理程序运行良好,成功创建了所有批处理表/序列并用批处理结果的详细信息填充它们。但是,当我再次运行它时,Spring Batch 尝试再次创建这些表并抛出“ORA-00955:名称已被现有对象使用”异常。我究竟做错了什么?

# For Oracle
batch.jdbc.driver=oracle.jdbc.driver.OracleDriver
batch.jdbc.url=jdbc:oracle:thin:@localhost:1521:orcl
batch.jdbc.user=****
batch.jdbc.password=****
batch.schema=****
batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle10g.sql
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle10g.sql
batch.jdbc.testWhileIdle=true
batch.data.source.init=false

以下是我的上下文文件:

<?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:batch="http://www.springframework.org/schema/batch"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-2.1.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:property-placeholder location="classpath:batch.properties" />

    <context:component-scan base-package="com.myco.mypack" />

    <jdbc:initialize-database data-source="dataSource">
        <jdbc:script location="${batch.schema.script}" />
    </jdbc:initialize-database>

    <import resource="classpath:/META-INF/spring/module-context.xml" />

    <bean id="jobLauncher" class="org.springframework.batch.core.launch.support.SimpleJobLauncher">
        <property name="jobRepository" ref="jobRepository"/>
    </bean>

    <bean id="transactionManager"  class="org.springframework.jdbc.datasource.DataSourceTransactionManager" lazy-init="true">
        <property name="dataSource" ref="dataSource" />   
    </bean>

    <bean id="jobRepository" class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean">
         <property name="dataSource" ref="dataSource" />
         <property name="transactionManager" ref="transactionManager"/>
         <property name="databaseType" value="oracle" />
         <property name="tablePrefix" value="BATCH_"/>
         <property name="isolationLevelForCreate" value="ISOLATION_DEFAULT"/>
    </bean>  

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName" value="${batch.jdbc.driver}" />
        <property name="url" value="${batch.jdbc.url}" />
        <property name="username" value="${batch.jdbc.user}" />
        <property name="password" value="${batch.jdbc.password}" />
    </bean>
</beans>
4

3 回答 3

4

我没有看到像这样使用batch.data.source.init

<jdbc:initialize-database data-source="dataSource" 
                          enabled="${batch.data.source.init}">
    <jdbc:script location="${batch.schema.script}" />
</jdbc:initialize-database>
于 2012-04-05T19:54:26.890 回答
4

已经有一段时间了,但我认为对于搜索此问题的人来说,知道您可以通过使用禁用创建数据库会有所帮助

spring.batch.initializer.enabled=false

在文档中给出的 application.properties 中:http: //docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html

于 2016-09-15T13:35:25.857 回答
0
<jdbc:initialize-database data-source="dataSource" 
                      enabled="${batch.data.source.init}">
<jdbc:script location="${batch.schema.script}" />

如果我通过命令行参数 -Dbatch.data.source.init=false ,则不启用初始化。

但是如果我使用以下配置并在上下文 xml 中将 enabled 设置为 false ,那么即使启用标志为 false 也会触发初始化

<jdbc:initialize-database data-source="dataSource" 
                      enabled="false">
<jdbc:script location="false" />

于 2013-02-06T12:22:49.120 回答