Alright... I think I lied when I said that there wasn't anything about this in User Guide. There is actually a section with the heading "Extending the UI" and under the "Text Content" sub-heading,...
Type: Posts; User: sathya_sn; Keyword(s):
Alright... I think I lied when I said that there wasn't anything about this in User Guide. There is actually a section with the heading "Extending the UI" and under the "Text Content" sub-heading,...
It looks like the ${job.name}.description really comes a ResourceBundle and it appears that its not related to the "batch:description" tag in the Spring Batch job configuration like I initially...
You might want to checkout "spring batch integration" which is a sub project of spring batch admin. The two options you've described are basically remote chunking and partitioning in spring batch...
Made some progress... Upon digging into the Spring Batch Admin source code, I see the jobs.ftl that seems to be the view for this page. In that, I see this line
<td><@spring.messageText...
Has anyone gotten this to display the proper values. Would really appreciate any feedback. Thanks
Any Spring Batch Admin users here know where the "Description" column in Spring Batch Admin's "Jobs Page" gets its value from?
I've tried configuring a "batch:description" to jobs configuration...
I did try setting the "useSharedExtendedConnection" to true and wrapped the datasource in ExtendedConnectionDataSourceProxy (like the javadoc recommends). Didn't seem to make any difference in my...
I ended up registering an additional datasource in JBoss and used it just for the reader. With this seperation in the datasource and underlying connection between the reader and other spring batch...
Has anyone tried using Spring Batch with Oracle in an XA environment? It would be hard to believe no one else has run into this.
I'm running into an interesting issue trying to use a JdbcCursorItemReader against an Oracle database. When the commit-interval is reached and the first chunk commits, I get a "Caused by:...
In the end, the answer turned out to be easier than I thought... I ended up renaming the "persistence.xml" to "spring-persistence.xml" and set the "persistenceXmlLocations" in the...
I'm trying to deploy a WAR that contains multiple persistence unit jars merged into one using MergingPersistenceUnitManager of Spring Data. If I understand the requirements for it right, the...