Hello,
I'm using Spring 3.0.1 with ThemeChangeInterceptor. To change a theme, I have just to add "?theme=theme1" to a page and the theme is changed. But what does occur if I set a wrong theme ?
...
Type: Posts; User: christophe; Keyword(s):
Hello,
I'm using Spring 3.0.1 with ThemeChangeInterceptor. To change a theme, I have just to add "?theme=theme1" to a page and the theme is changed. But what does occur if I set a wrong theme ?
...
I'm new with jcr and with se-jcr-0.9.jar.
I've just tried to follow the documentation (http://se-jcr.sourceforge.net/guide.html).
package org.springframework.data.jcr;
import...
Using cewolf for rendering chart means configuring a specific servlet for cewolf. Moreover, we define an "internal" function produceDateSet(Map params) to specify what data to load. Here is an...
I think the problem is probably caused by Hibernate.
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1293
Since I still enjoy using Spring ;-) I've upgraded from Spring 2.0M4 to Spring 2.0-RC4.. I'm using tomcat-5.5.17 with jetspeed2 and portlet based on spring MVC.
I've got a lazy initialisation...
To use portlet with spring, the portlet.xml configuration file contains:
<portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
To use JSF portlet inside Jetspeed-2, the...
I had:
import java.net.BindException
instead of:
import org.springframework.validation.BindException;
Now it is working.
Going deeper with the debugger, here is what I get:
SimpleFormController:
onSubmit(Object,BindException):
-> return new ModelAndView("welcomeMiddleSubView",errors.getModel());
back to:...
I forgot to put insertForm.jsp:
<%@ include file="../include/includes.jsp" %>
<P>
<H2>Import Data:</H2>
<spring:bind path="command">
<FONT color="red">
<B><c:out...
First, thanks for the great job done on Spring framework !
Here is an extract of my configuration:
test-servlet.xml:
<property name="mappings">
<props>
<prop...
Thank you very much for your answer. I didn't hear about this project. It's great.
Hello,
I have a server multicasting information. For the moment, this information are multicasted on a LAN without any specific format (I mean XML and so on) or high level procotol (like http)....
Some jakarta-commons were missing in my WEB-INF/lib. Now it is working.
It should be notice that there is no error message when the called is performed from a SimpleFormController. When a call is...
Thanks for your response.
I've tried the syntax but it is not worling (in fact I've tried the second syntax since the first was not working).
For ttu, yes it's a bad syntax.
Anyway, I've check...
The HQL request is translated this way:
select i.TOTO_id as x0_0_, i.code as x1_0_, i.name as x2_0_, i.titi as x3_0_, i.tutu as x4_0_ from TOTO i where (i.code='ABC');
Under sql, it is working...
I'm working with Hibernate2.1.6, Tomcat 5.0.28 and Spring 1.1.1. My OS is a woody debian.
In my class HibernateToto (extends HibernateDaoSupport) I'm doing the following request:
...