Search:

Type: Posts; User: mminella; Keyword(s):

Page 1 of 15 1 2 3 4

Search: Search took 0.03 seconds.

  1. My other question is whether they all need to be...

    My other question is whether they all need to be JdbcCursorItemReaders (why not paging)?
  2. 1. Please use the code tags when posting code....

    1. Please use the code tags when posting code.
    2. Are you using the ExtendedConnectionDataSourceProxy to wrap your DataSource?
    3. I will say that this feature wasn't designed for the connection...
  3. Replies
    2
    Views
    85

    It sounds like you have retry logic enabled for...

    It sounds like you have retry logic enabled for those exceptions. Can you please post your configuration (using the code tags)?
  4. What jobRepository are you using?

    What jobRepository are you using?
  5. We also have a sample job that uses Quartz you...

    We also have a sample job that uses Quartz you should check out: http://static.springsource.org/spring-batch/trunk/spring-batch-samples/#quartz. It addresses the background job runner and creating...
  6. 1. If you turn on debugging, can you see the...

    1. If you turn on debugging, can you see the batch beans being created?
    2. Are you using the AutomaticJobRegistrar to create your job registry?
  7. So what are you doing to bootstrap spring batch...

    So what are you doing to bootstrap spring batch in your web app? Unless you bootstrap it in some way, nothing will happen. The easiest way would be to import the config in your jar file into the...
  8. The ItemProcessor interface does not expose a way...

    The ItemProcessor interface does not expose a way to access the StepContext so you need to inject it yourself. To do that:


    <bean id="itemProcessor" class="com.myApp.MyItemProcessor"...
  9. Are you seeing the Spring Batch code being...

    Are you seeing the Spring Batch code being bootstrapped when you start the web application?
    If so, are you seeing your Quartz job running at all?
  10. Please use the code tags when posting XML. It is...

    Please use the code tags when posting XML. It is very hard to read it without that.
    If you're using JPA, can you post the configuration for that as well? You're obviously running the scripts,...
  11. Why are you trying to re-implement chunk based...

    Why are you trying to re-implement chunk based processing in your Tasklet and not using the framework to handle stream registration, calling the ItemReader, etc?
  12. Why wouldn't you just limit the size of the...

    Why wouldn't you just limit the size of the thread pool your task executor creates to 4 (or is there threading done within some of these flows)?
  13. 1. What are you trying to do with the...

    1. What are you trying to do with the <aop:scoped-proxy/> config in your processor?
    2. Where are you actually attempting to inject the StepContext into the processor?
  14. Replies
    2
    Views
    182

    Sticky: This is a configuration error with how your...

    This is a configuration error with how your datasource is configured. Please create a new thread for this with your configuration and we can discuss it there.
  15. Replies
    2
    Views
    182

    Sticky: Spring Batch 2.2.0.RC2 is Available

    The 2.2.0.RC2 is available (download github http://bit.ly/NYXItL or the Spring milestone repo).

    This release consists of minor bug fixes found in 2.2.0.RC1.

    The full list of updates can be...
  16. Replies
    1
    Views
    109

    Three things: 1. Please us the code tags when...

    Three things:
    1. Please us the code tags when posting code.
    2. This is really a Spring Security question and not a Spring Batch question
    3. The http element is part of the security schema so...
  17. Replies
    5
    Views
    244

    With regards to processing a file via multiple...

    With regards to processing a file via multiple threads, there typically is no performance improvement. Typically you see the buffers being saturated with I/O and, depending on the configuration, the...
  18. How are your datasources and transaction manager...

    How are your datasources and transaction manager configured in each instance (server and via admin)?
  19. It is a valid approach. Given that you probably...

    It is a valid approach. Given that you probably won't be doing everything with Hibernate via batch (at the very least, the updates to the JobRepository use straight JDBC), using the...
  20. Replies
    5
    Views
    244

    Assuming the jobs are operating on separate data,...

    Assuming the jobs are operating on separate data, there is no reason why you couldn't run them in parallel.

    With regards to the staging table, that is what that sample job does. You may or may...
  21. How are you launching your jobs?

    How are you launching your jobs?
  22. I would still just use the JdbcTemplate and store...

    I would still just use the JdbcTemplate and store the messages in a separate table. Then you wouldn't have to deserialize the context at all to show the messages.
  23. Three things: 1. Please use the code tags when...

    Three things:
    1. Please use the code tags when posting XML or code.
    2. Which job execution id are you using? I assume it's the one for the parent.
    3. What is the error you are receiving? A...
  24. Replies
    6
    Views
    4,252

    Sticky: We're working on updating it now. If you are...

    We're working on updating it now. If you are open to checking out nightly snapshots, the current nightly snapshot should work with 2.2.0. Any feedback you would be willing to provide is definitely...
  25. Thread: Flow Question

    by mminella
    Replies
    3
    Views
    233

    Your step needs to be step scoped to have that be...

    Your step needs to be step scoped to have that be injected.
Results 1 to 25 of 365
Page 1 of 15 1 2 3 4