当前位置: 首页 > 知识库问答 >
问题:

JobRepositoryFactoryBean错误spring批处理

唐阳飙
2023-03-14

我开始学习spring batch,遇到一个问题,当我想使用JobRepositoryFactoryBean在数据库中持久化作业的状态时。编译器显示:

“原因:org.springframework.beans.factory.beanCreationException:创建类路径资源[springconfig.xml]中定义的名为'job repository'的bean时出错:调用init方法失败;嵌套异常为html" target="_blank">java.lang.noClassDefoundError:org/springframework/jdbc/core/simple/parameterizedRowMapper”

但使用MapJobRepositoryFactoryBean时不会出错

我用的是spring 5

SpringConfig.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:batch="http://www.springframework.org/schema/batch"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:task="http://www.springframework.org/schema/task" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xsi:schemaLocation="http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.3.xsd
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.3.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">


    <context:component-scan base-package="springbatch" />
    <context:annotation-config />



    <bean id="personneReaderCSV" class="org.springframework.batch.item.file.FlatFileItemReader">
        <property name="resource" value="input/personnes.txt" />
        <property name="lineMapper">
            <bean class="org.springframework.batch.item.file.mapping.DefaultLineMapper">
                <property name="lineTokenizer">
                    <bean
                        class="org.springframework.batch.item.file.transform.DelimitedLineTokenizer">
                        <property name="delimiter" value="," />
                        <property name="names" value="id,nom,prenom,civilite" />
                    </bean>
                </property>
                <property name="fieldSetMapper">
                    <bean
                        class="org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper">
                        <property name="targetType" value="springbatch.entities.Personne" />
                    </bean>
                </property>
            </bean>
        </property>
    </bean>

    <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">
        <property name="dataSource" ref="dataSource" />
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <bean name="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="jdbc:mysql://localhost:3306/spring_test" />
        <property name="username" value="root" />
        <property name="password" value="" />
    </bean>


    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="annotatedClasses">
            <list>
                <value>springbatch.entities.Personne</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">create</prop>
            </props>
        </property>
    </bean>




    <job id="importPersonnes" xmlns="http://www.springframework.org/schema/batch">
        <step id="readWritePersonne">
            <tasklet>
                <chunk reader="personneReaderCSV" 
                processor="personProcessor"
                    writer="personWriter" 
                    commit-interval="2" />
            </tasklet>
        </step>
    </job>

    <bean id="daoPersonne" class="springbatch.dao.PersonneDaoImp">
        <property name="factory" ref="sessionFactory"></property>
    </bean>

    <bean id="personWriter" class="springbatch.batch.PersonneWriter">
            <property name="dao" ref="daoPersonne"></property>
    </bean>

    <bean id="personProcessor" class="springbatch.batch.PersonneProcess">
    </bean>

    <bean id="batchLauncher" class="springbatch.MyBean">
    </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="Mysql" />

    </bean>


    <task:scheduled-tasks>
        <task:scheduled ref="batchLauncher" method="message"
            cron=" 59 * * * * * " />
    </task:scheduled-tasks>

    <jdbc:initialize-database data-source="dataSource">
        <jdbc:script location="org/springframework/batch/core/schema-drop-mysql.sql" />
        <jdbc:script location="org/springframework/batch/core/schema-mysql.sql" />
    </jdbc:initialize-database>


</beans>

但当我使用:

<bean id="jobRepository"
class="org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean">
    <property name="transactionManager" ref="transactionManager" /> 
</bean>

共有1个答案

锺离昂然
2023-03-14

您正在使用SpringBatchV2.2和SpringFramework5。这将无法正常工作,因为parameterizedrowmapper在Spring Framework4.2+中被删除了(因此出现了例外)。

我建议您使用SpringBatchV4.1(因为不再维护V2.x),您的问题应该得到解决。

管理Spring依赖关系的最好方法是让Spring Boot为您完成这件事,可以从start.Spring.io生成一个项目,也可以使用Spring Boot BOM。通过这两种方法,您将拥有正确的Spring项目依赖项,这些依赖项已知可以很好地协同工作。

 类似资料:
  • 我是新的Spring批与引导。我在使用postgres配置jobRepositoryFactory bean作为数据库时遇到了一个问题。下面是我的配置类。 下面是Spring boot App run的输出 我已经在我的configuration类中配置了bean。我错过了什么?

  • 我们已经使用eclipse构建了一个spring批处理应用程序。每当我通过eclipse执行程序时,它都运行良好。但当我尝试生成并运行使用ant创建的jar文件时,我得到了这个丑陋的堆栈跟踪。 2012年12月27日11:10:30880 1141[主][]错误(CommandLineJobRunner.java:355):作业因错误而终止:类路径资源[启动上下文.XML]的XML文档中的第12行

  • 在happy path场景中,我有一个spring批处理工作,但现在我将重点放在错误处理上。 但是,在另一个测试中,我想证明一个不可预见的数据库错误会导致作业失败。为此,我创建了一个触发器,该触发器会导致对要插入的表的插入失败。 这似乎起作用了,在writer执行之后,在事务提交期间抛出异常,并且我得到以下日志消息: 这似乎也是预期的行为。问题是,这并不能阻止工作。该步骤退出到SimplyRetr

  • 我有以下步骤:

  • 我按照本教程在Java中配置Spring批处理作业。它通过使用一个接口为多个数据源做准备,然后由每个数据源实现该接口。 这是我目前所掌握的: PostgreSQLConfig.java jobconfig.java 通过对我的MySQLConfig使用注释,我希望使用MySQLConfig bean。相反,我得到的是: