Thanks for reply!
That page mention auto recovery as well as few other docs do, however I'm more interested in how it is being handled, i.e. how much reliable this process is and what is the cost...
Type: Posts; User: nim; Keyword(s):
Thanks for reply!
That page mention auto recovery as well as few other docs do, however I'm more interested in how it is being handled, i.e. how much reliable this process is and what is the cost...
Thanks! I've also read your replies in this thread, so it sounds like Atomikos automatically track transactions and have ability to auto recover.
What is confusing is that it is not clearly...
Hi,
I would like to reuse this thread as essentially I'm looking for JTA implementation to integrate with Spring and Tomcat, that will support failed transactions recover.
We have several...
Two things that helped me found issue cause:
1) Used 'Any exception' breakpoint in IntelliJ (don't know if there same option in Eclipse) and realized that Loggers are not loaded properly (perhaps...
I know this is an old thread, but I just solved a similar issue for myself with an interesting revelation which I want to share with others. My dao tests extend very handy...
Look - you put your search results in the model under "hits" name, and then throw it away by creating a new ModelAndView with command as model.
You can use either showForm(..) method or return...
Hi krosan,
search.jsp
<form:form method="POST">
<form:input path="searchString" />
<input type="submit"/>
</form:form>
If not...
String is immutable object and cannot be used as command of course. Instead you can create some class SearchCommand that would have private variable of String type with corresponding getter and...
Did you try a sample included in distributive? It is written with <spring:bind>, but using <form> tags is very straightforward - check Spring reference for examples.
Although everything looks fine, I wonder why do you deploy your app to the root context? I mean, why the url you are using is "http://localhost:8080/logon.htm" and not...
From official reference:
Can this be your problem?
I think it would be more useful if you post code extracts here instead of attaching archive: 1) it would be available for search, 2) easier to read and answer.
Thanks for tip Kaj, KeepAsIsErrorCodeConverter persuade validator to use other notation of error codes for lookup in message sources.
I've got another problem which I can't find escape from. Using...