Hello
Suppose I use a LocalTransactionManager for JCR transaction management:
<bean id="jcrTransactionManager"
class="org.springmodules.jcr.jackrabbit.LocalTransactionManager">
...
Type: Posts; User: markandirene; Keyword(s):
Hello
Suppose I use a LocalTransactionManager for JCR transaction management:
<bean id="jcrTransactionManager"
class="org.springmodules.jcr.jackrabbit.LocalTransactionManager">
...
Hello
Took me a while to work it out.
Buried in the documentation for AbstractFormController.java is this:
"cacheSeconds" is by default set to 0 (-> no caching for all form controllers).
...
Hello
An update. AbstractController works fine. It is MultiActionController that is causing problems.
I have tried defining my controller with and without the following:
<property...
Hello
I have a question about response headers.
If I use a SimpleFormController and inspect the response headers that are returned to the browser then I see the following:
Server:...
Hello
Was this issue ever resolved? Every method I annotate with @CacheFlush doesn't ever flush the cache. @Cacheable works fine.
Thanks
Mark
Hello
I have a table that has a BLOB field. The blob contains the contents of a PDF.
When the user clicks on a hyperlink, I want a controller to lookup the associated record and return the...
Hello
I have a ParameterizableViewController with the following method:
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws...
Hello
If I mark a method as:
@Transactional(readOnly = true)
and it calls another method marked as:
@Transactional
Hello
Would it make sense to write a commandClass as an inner class of a class that extends SimpleFormController?
How would I go about configuring the XML around it?
Basically, I'd like to...
Hello
I'm getting in a muddle with the URLs I'd like to include and exclude from the springSecurityFilterChain.
What I'd like to happen is for only URLs that end in ".html" to be processed by...
Suppose I login via a JSP and initiate an HttpSession. I add some items to a shopping cart.
Now, over the period of an hour, I click through a series of JSP pages that contain session="false".
...
Hello
I'm probably being stupid.
I wish to use an HttpSession for storing a cart within my application.
a) Will every JSP page, from login onwards, need to contain <%@ page session="true"...
Hello
1) What is the difference between the 'database' and 'databasePlatform' properties?
2) I am trying to use Oracle 10g with:
<property name="database" value="ORACLE" />
and keep...
Hello
I wish to display in a list of Product Types in a JSP. I am thinking of using the referenceData method of the SimpleFormController.
The Product Types are held in a database that I would...
Hello
I'm looking to use an Oracle sequence in a JDbcDAOSupport class:
import org.springframework.jdbc.core.support.JdbcDaoSupport;
public class JDBCExampleTransactionDAO extends...