What's New in Spring Batch 5?

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

ความคิดเห็น • 13

  • @akshaylonkar713
    @akshaylonkar713 ปีที่แล้ว +2

    My scenario is, I want to read json file and send those records in the form of objects to another microservice. It was working fine in spring batch 2. But version 3 has Job Repository mandatory and it asks for dataSource. How to proceed.

    • @vishnumurthy5823
      @vishnumurthy5823 ปีที่แล้ว

      In my case there are multiple job repositories configured in the service. After updating to version 3 its asking me to mandatorily configure data soure for jobrepository even after excluding the BatchAutoConfigurer class. If you found any solution let me know please

    • @abhishekanand472
      @abhishekanand472 6 หลายเดือนก่อน

      ​@@vishnumurthy5823have you find any solution to configure two data sources, earlier in spring batch 3 I am using task configurer and batch configurer

  • @jocsanmairena4222
    @jocsanmairena4222 4 หลายเดือนก่อน

    how to do you declare multiple databases. One as a input/source database and one as the output/destination database?

  • @praveens2272
    @praveens2272 ปีที่แล้ว +3

    How to disable spring batch not to create meta tables in database. Please answer it.

    • @sudhavuppalapati6574
      @sudhavuppalapati6574 3 หลายเดือนก่อน

      spring.batch.jdbc.initialize-schema=never I hope will help

  • @rockyrocko-j2gk
    @rockyrocko-j2gk ปีที่แล้ว

    For new viewers gist starts at 5:29. Rest small talk overhead could be easily skipped.

  • @balachandru6544
    @balachandru6544 8 หลายเดือนก่อน

    How to pass entity dynamically for ItemReader and ItemProcessor in spring batch?

  • @amadoubalde1068
    @amadoubalde1068 ปีที่แล้ว

    when you dockerize it to a microserivice?

  • @rushikeshpanchal1349
    @rushikeshpanchal1349 ปีที่แล้ว

    In spring batch I am reading 10000 records csv file from azure storage services , so that how can I create one interface table so there I can store these amount of data and wantedto perform validation on this then I want to move valid records into database and invalid records send back to the another or same csv file, so how can I achieve this is there any spring batch making one interface table to do this operation kindly provide suggestion. For valid data to move in database uding jdbcbatch item writer ad query.... how to storr failures records and upload into csv for retry mechanism can anyones suggestion on this also

  • @amadoubalde1068
    @amadoubalde1068 ปีที่แล้ว

    is this just metatadat attached to a field?

  • @amadoubalde1068
    @amadoubalde1068 ปีที่แล้ว

    should be a yaml file tied to an object

  • @VAjitRajuStayHappy
    @VAjitRajuStayHappy ปีที่แล้ว

    Hi I could see from Spring batch 5 onward JobParameter allows type as well, however does it allow UserDefinde types as well.
    e.g. i have Employee type and want to set it as JobParameter. My employee type is a Avro object.
    i am getting the below conversion error org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [com.concretepage.model.Employee] to type [java.lang.String]
    can you help me here how to Fix this