What is the best way to test with using the second level cache? I turned on statistics and running my tests I see the following log output:
2009-11-16 14:21:38,366 3016 DEBUG...
Type: Posts; User: dgrossen; Keyword(s):
What is the best way to test with using the second level cache? I turned on statistics and running my tests I see the following log output:
2009-11-16 14:21:38,366 3016 DEBUG...
Thanks for pointing me in the right direction
I've just begun to look into the documentation for BlazeDS and noticed flex seems to handle most if not all the controller work. If I need to get a URL parameter, is it best to use Flex libraries...
I've been playing around with annotations too and ran into this same problem in 2.5.6. By chance I had changed the return type to void and my action worked! I've been searching through the...
Even better is using use-default-filers="false"
<context:component-scan base-package="org.selecthealth.springannotations.servlet" use-default-filters="false">
<context:include-filter...
I think I found my error...
applicationContext.xml
<context:component-scan base-package="org.selecthealth.springannotations.servlet">
<context:exclude-filter type="annotation"...
hibernate.cfg.xml
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property...
I can't seem to get my annotated classes working right and I need help to find out what I've missed.
applicationContext.xml
<context:component-scan...
I've decided to use an AbstractCommandController. Thanks for the discussion
Great insight. I would definitely prefer to work with a command object. Maybe I approached this all bassackwards...
Above I mentioned I was thinking about using a query string parameter. The...
What controller is the best fit for an application that doesn't need to process a submission and render a success view?
What I have in mind is displaying a table of data from database tables based...
Not sure if I could still be of help here, but I was looking to do something similar and created my own custom jnditemplate
public class CustomJndiTemplate extends JndiTemplate{
protected...
Hi,
I've been trying to move my portlet to liferay on weblogic 10 while at the same time upgrading it from spring 2.0.6 to 2.5.6
I've run into quite a few class cast exceptions but I just can't...