hi all
i am trying to configure my Spring 3 app for kerberos authentication, but i cannot get my head around Service Principal Names.
At the moment i have a working webapp that authenticates using...
Type: Posts; User: MmarcoM; Keyword(s):
hi all
i am trying to configure my Spring 3 app for kerberos authentication, but i cannot get my head around Service Principal Names.
At the moment i have a working webapp that authenticates using...
hi all
i have followed instructions to configure Kerberos authentication for my app here
http://blog.springsource.com/2009/09/28/spring-security-kerberos/
I have setup a linux host for...
Hell
ok it was incorrect configuration
this
<security:custom-filter position="BASIC_AUTH_FILTER" ref="ntlmFilter" />
should have been
<security:custom-filter...
Hello
ok i am now using spring 3.0.7 release plus spring-security-3.0.7.
have this http section configured
<security:http create-session="never"...
thanks a lot Martin!
Hello all
i am moving my app to Spring Security 3 and, as our current code uses an ntlm Filter, i have checked this website
http://aloiscochard.blogspot.com/2010/03/spring-security-ntlm-3.html...
Hello all
i have the following job which is comprised of 5 tasks (all independent between them).
<batch:split id="generateChanges" task-executor="myConcurrentTaskExecutor">
<batch:flow>
...
hello michael,
good point! i didnt' know about the databaseType
i m using MSSQL
thanks, i'll give it ago
rgds
marco
Hello
ok this is my config
<property name="queryProvider">
<bean class="org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean">
<property...
Hello michael
thanks for the reply
i have problem using distinct
i just got an exception when i used a distinct clause
my sql was literally
is the PagingItemREader supposed to support the distinct clause?
if not, why?
are there any workaround (other than using CursorItemReader) ?
w/kindest regards
marco
hi, sorry for hijacking this thread
i am having same problem
- reading 40K rows table
- do some processign with each item (call a service which will retrieve extra data)
- output the data to...
Hi all
i need to use mthreadign wtih my batch as it runs too slow (~ least 50 mins)..
reason of that is that it's selecting data from a 40K row table, and it is then calling a service (via a...
HI ALL
i would like to implement a parallelExecution for my ItemProcessor.
My batch consists of
- jdbcItemREader which will read two columns from a db table
- an ItemProcessor which will use...
Hi
ok i thought about it, and i believe with a jdbcItemREader (which select data from db), an ItemProcessor (which queries my service) and an ItemWriter should do it
sorry for bothering
...
hello all
i have this particular usecase that i need to implement using spring batch.
I Have to export a set of data to a file.
THe data that i need to export will come from a database,...
Hello all
i tried the following test, hoping that the delimiter would be escaped if it was present in one of the fields to be sent to output, but it failed instead
@Test
public void...
hi all
i have to write a job where i read data from the database and output it to a tab-delimted file.
I have two problems which i cannot find solution for:
1 - how can i escape the \t...
Hello
i forgot to mention one thing.
I am actually reading data from a database and writing it to a flat file.
I want to write one database record per line, but i need to be able to handle...
hi all
i was reading javadocs for DelimitedLInetokenizer, and it says that This implementation also supports the use of an escape character to escape delimiters and line endings..
So, if i...
Hello all
i was wondering if i can build, for my jdbcCursorItemReader, a sql like this .
Assuming i defined in my jobParameters a parameter name
<bean id="itemReader" scope="step"
...
HI all
i have to write a job which reads data from a db and dump it to a file.
each field in the output will be separated by a tab character, and i need to write header for all fields i will be...
HI all
how can i programmatically shut down a REtryTemplate so that it does not attempt to retry any operations?
I am guessing that behind the scene REtryTemplate uses a ScheduledTask...
Hi all
i have a tasklet that, as part of its execution, invokes a RetryTemplate.
I am trying to write a Mock test for that, but i cannot get around mocking the retry logic, simply because...
HI all
i have a Springbatch app in when i have a WaitForCompletion tasklet,w hich in its executes method does something like this
while(myMonitor.isNotReady()) {
assert(TimeOutNotExpired) ...