Alright, I removed -tiger from pom. By looking into caller's code(org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor), found the injected interface , then try to use...
Type: Posts; User: Julie Chi; Keyword(s):
Alright, I removed -tiger from pom. By looking into caller's code(org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor), found the injected interface , then try to use...
Humm, why there is a white space between "t" and "h" after posted.
Dear spring security experts:
I'm attempting to migrate our 'legacy' app from using acegi security to spring security 3.1.3.RELEASE without adding any new feature first. I'm hoping all the...
my bad ,it's in spring-batch-infrastructure-2.0.3.RELEASE.jar ,
Anybody know the jar file for org.springframework.batch.item.database.JdbcCursorItemReader ? thx.
It works! Thank you Dave!
That's it! DataSourceInitializer creates metadata tables by using batch core jar 's sample scripts before jobLauncher run. I'll play around to use my own ddl without DataSourceInitializer and see ......
I'm running the 'Hello World' example from http://www.1biznow.com/2009/08/java-batch-application-framework-using.html. I changed batch.properties to use a separate process for hsql in order to see...
Are we talking about different tables? I'm talking about meta-data tables , nothing is user defined.
I found the metadata tables schema are defined in...
Of course, the doc is right!
I'm more confused here . From my understanding the following statement means spring batch framework does create metadata tables. And i did see them from HSQL db.
Here is from "Spring Batch -...
Does framework create meta-data tables?
i found a related bug "tablePrefix property is not injected into JbdcExecutionContextDao" . it's supposed to be fixed in 1.1.0 core....
From test error report , i found the test does look at table with prefix "test_". However the table created in db is "BATCH_JOB_INSTANCE"
java.sql.SQLException: Table not found in statement...
Hi, i configured the meta-data tables with prefix "test.BATCH_" , however all tables are still prefix with "BATCH_" , here is my config ...
<batch:job-repository id="jobRepository"
...