Juergen Hoeller answered in Jira:
The Changeset is here:...
Type: Posts; User: sja; Keyword(s):
Juergen Hoeller answered in Jira:
The Changeset is here:...
Ok, I'm very sure, that I use the same Versions, because I got them from Maven, I see the Code and it's the same than in the Changeset.
Here's my StackTrace:
10:29:35 DEBUG...
Yes, I know, spring does not collaborate with Quartz 2.0. But, Juergen Hoeller made a change to at least AdaptableJobFactory works with it in Spring 3.1.M2. Thank you, Jürgen! The small Changeset:...
Good news!
After the things of the beginning of this thread now I use Profiles. And those even work with my tests like so:
@RunWith(SpringJUnit4ClassRunner.class)...
Won't it be better to remove the extend and leave the Annotation for a looser coupling?
I'm sure it was an anti-copy-paste-start-thinking pattern. ;-)
Ok, finally i got it with the inner Class. I had to rename my packages from my.project.subname.tests to my.project.tests.subname because of ComponentScan. The Filter did not work for me, because it...
Solution for my @Filter-Problem:
@ComponentScan(basePackages = "de.hlsolutions.hlmonitor.scheduler", excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, value =...
Ok, first, thank you for your high quality answers!
@"Marten Deinum": I read somewhere in the Doc about your suggest, but I think, the inner class has to have another name ... but I can't find it...
Hi!
Yes I searched the forum, I used Google, but I'm out of ideas and keywords to search with now.
Problem: I have a new Project with Spring 3.1M2 and I want to run JUnit tests like the...
c:out does not use SpEL! This works:
<spring:eval expression="newExercise.exercise.tasks.?[state.equals(T(fhkoeln.edb.nftool.ExerciseState).INTRO)]" var="xy"/>
<c:out value="${xy}" />
Hi Forum!
Environment: Spring 3.0.5 RELEASE, Tomcat, Web MVC, Tiles
I've a Test-Line in my jspx:
<c:out value="${'abc'.substring(2,3)}" />
which produces an Exception:
Can you do this explanation, please? I'm very interested in that.
Hmm, I think I know what you meant ... I've no SimpleUrlHandlerMapping bean. I've got an AnnotationMethodHandlerAdapter ....
it's simple and faste, if I post my whole XML:
<?xml version="1.0"...
Thank you, Marten, for your answer, but, I don't use struts! Just plain JSP views.
Thats easy: Look at your URL ... you have to preserve the current GET-Parameter in the URL. In my case, I prepare a link to language en in this way:
<spring:url var="url_en" value="">...
Ok, I could set an breakpoint at SessionLocaleResolver ... and on Line 56, which contains the following:
Locale locale = (Locale) WebUtils.getSessionAttribute(request,...
Hi Forum!
I've got a little Problem. I defined the following:
<context:component-scan base-package="fhkoeln.edb.nftool" use-default-filters="false">
<mvc:annotation-driven/>
...
Hi dawez,
I don't think, that this interests you anymore, but to round up this thread:
You try to implement a Controller, which should change the locale and saves it in the session. But: The...
After a debugging session I think, that your method should be like this:
@RequestMapping(value = "/application", method = RequestMethod.POST)
public ModelAndView create(@ModelAttribute("data")...
My Solution in detail:
My Flow contains two types of answers, represented by two Beans, answerColumns and answerTables. To remember the points and their answer, I have the following on the top of...
Ok, thank you InverseFalcon and triqui!
I'll try that and set this thread to solved, if it this helped.
@InverseFalcon: I didn't know the child-element meaning of <transition/>. In my case, I...
Why do I never get an answer to my posts? I need some reasons to do it better in the future.
Are my thread-titles boring?
Should I give more information?
Are my texts not pregnant enough?
...
Hi!
I want to count, how often a view state has been submitted, until it passed the validator. Is there a way to even read that in the flow-definition?
Sebastian
Thank you, Christian, that was my problem. Solved.