is this really not possible (other than manually) or does it not make sense for some reason i'm not seeing (could be)?
Type: Posts; User: anthalamus; Keyword(s):
is this really not possible (other than manually) or does it not make sense for some reason i'm not seeing (could be)?
Hi everyone, I was wondering if there was any easy mechanism to serialize my object back to a similar xml than my input, like so:
BeanFactory beanFactory = new...
bump
really, no one has had this problem already?
answering my own question, i had skimmed through the "getting started" at http://static.springsource.org/spring-batch-admin/getting-started.html, which clearly states that one can override spring...
I use the following in my job configuration file:
<bean id="jobLauncher" class="org.xxx.prototype.springbatch.MyJobLauncher">
<property name="jobRepository" ref="jobRepository" />
</bean>...
I found a workaround by basically refering to s2 twice like so:
split s1/s2 next=s4
flow s1
flow s2
split s3/s2 next=s5
flow s1
flow s2
has someone ever successfully externalized a flow containing a split?
I get a NullPointerException when i try... if i remove the split and say make steps inside of it be sequential, then it works...
ok, well if you guys can't think of an obvious way to obtain it anyway, I suppose I can simply go with satsranchuser's suggestion.
ok, I found it, I didn't notice it before. That actually resembles what I need but probably does not offer the flexibility i need. By dumping to an graph descriptive file, I could then use graph...
Hi everyone,
I'm running into an issue when writing my xml job file. I'm not sure I can quite achieve what I need. I have a case with 5 steps s1 to s5 which could be represented like this:
s1...
satsranchuser: I thought about it, I was just hoping to obtain it from an object instead. based on the logs, it clearly is stored somewhere
arno: not sure i'll need it yet, but i'm considering...
Hi, the monitoring tool would be for end-users, not developers. So I'm not sure I'd want to use a feature from an IDE.
That being said I could look at how it's done there, how would I achieve...
Hi all,
I'm writing a module that would allow me to visualize the steps of my job. My job's workflow can be represented by a dependency diagram (from a directed graph), since some steps depend on...
When running my job, the logs on Spring Batch Admin (using Jetty) show the following message:
...
The best I've found so far is:
System.getProperty("exec.args")
but i was hoping for a more Spring-y solution. Besides, this does not work when the job is started via Spring Batch Admin (I'm...
anyone knows how to get the xml file path/name of the ApplicationContext? it's passed as command line argument in Spring Batch and i'd like to retrieve it from an object or maybe a system property?
...