ĄThanks a lot!,
I've tried with the second approach and I think it works.
Type: Posts; User: Oscar; Keyword(s):
ĄThanks a lot!,
I've tried with the second approach and I think it works.
Hello,
In Acegi Security I've been using the additionalAuthenticationChecks method from the LdapAuthenticationProvider class to perform some additional checks.
But now I am migrating to Spring...
Hello Alph, thanks for the replay.
I am still getting the same error when I try to use the match function, I've tried with the sample code you posted but nothing changes. Have you ever seen a...
Hello,
I want to validate that a string has a numeric format using valang. But I do not find the correct way.
I tried to use a regular expression:
{ field : match('^\\d+$',?) is true : '' :...
Thanks a lot, I think this should be the right way.
Hello mdeinum! thank you for the reply.
I think I understand.
So I should change my question: which is the usual way for error handling the view code? There is something built like...
Hello robcos! thank you for the reply.
You are right, the xml is not well formed, I did it to test the SimpleMappingExceptionResolver behaviour.
This is an error that on production could happen...
When the error happens in the controller everything works fine, but when the error happens in the view ( an AbstractXsltView) the error page does not appears.
Hello,
I have configured a SimpleMappingExceptionResolver in my dispatcher-servlet context this way:
<bean id="exceptionMapping"...
Hello,
I've followed this tutorial:
http://opensource.atlassian.com/confluence/spring/display/DISC/Caching+the+result+of+methods+using+Spring+and+EHCache but I'am not able to configure ehCache...
Thank you for the reply,
If I remove the classpath*: prefix from:
- the "import tag" I get the following result: java.io.FileNotFoundException: Could not open ServletContext resource...
Hello,
I have created a jar file with some bean definitions inside.
In a external project I:
- add the jar
- use <import resource="classpath*:...
Finally I could solve it this way:
model.put("myBeanData", beanData);
model.put("format", format);
model.put(JRParameter.REPORT_RESOURCE_BUNDLE , resourceBundle);
Hello,
I'm trying to create reports using locales different from the actual locale in the WebApplicationContext.
I use a MultiActionController :
model.put("myBeanData", beanData);
...
Hello,
I need to create reports in MSWord format in a web application.
I have tried to use JasperReports with RTF Format, but I do not find the way to execute it from Spring. The...
I found it!
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/literales"/>...
Hello,
I'm trying to use the spring's i18n features, but i'm allways getting:
org.springframework.context.NoSuchMessageException: No message found under code 'xxxxxx' for locale 'xxxxxx'....