My web application uses REST-style URLs with path variables. This has worked very well for the app and its design. I am unable to figure out how to map a Flow when there is a path variable in the...
Type: Posts; User: gkaplan; Keyword(s):
My web application uses REST-style URLs with path variables. This has worked very well for the app and its design. I am unable to figure out how to map a Flow when there is a path variable in the...
Hi WebFlow Experts,
I have an issue that I can't seem to find a resolution for.
The components of my web app include: Spring 3.1.1, Spring Security 3.1 and Web Flow 2.3.
1. User signs into...
So, just to be clear, my preference would be to pull out the transaction stuff because I don't need it. Here is an abbreviated version of my ReportDaoImpl class:
[imports removed as well as...
I am building an application that initially started as a Roo project and was refactored into a stand-alone Spring MVC template project. In the process, I pulled out all of the unused parts, including...
After adding the following plug-in to my Roo 1.2 project, roo crashes and becomes unresponsive. The error that shows up is:
InvocationTargetException at...
I have this problem too, and have had to pull Roo out of my project. STS becomes so unresponsive, even the mouse becomes jumpy. Then, if I exit STS, the JVM continues and memory grows and grows until...
I have an update to this - through some more testing, it seems that the default settings for a DocumentBuilderFactory is to not be namespace aware. If the setNamespaceAware(true) method is called...
I am experiencing this exact same problem and killed a lot of time only to discover the same solution with using a StreamSource. Although this solution works for me, I would really like to know why...
I've tried just about every combination of things to get rid of those warnings, and they won't go away. They are the only warnings in my entire project, so it's quite frustrating. Here's what I get....
Is it possible to create an entity that has embeddable objects that are not entities themselves? I have the need to create a "report" entity which contains multiple other objects. For example, the...
Nope. That won't solve the problem. You are assuming that I'm using STS distro of Eclipse.
I am using Helios + STS from the update site. As it turns out, the base distro of Eclipse does not...
I gotta say this is ridiculous. I have tried everything to make a simple template work, and it just doesn't. I am using Helios with the nightly build of STS installed. I create a template project and...
I got no responses on my post. In fact, yours is the first. I have no idea if one is better than the other, but I eventually figured out how to use the XsltView and it's associated resolver. I had...
My config specifies the following XsltViewResolver:
<bean id="xslViewResolver" class="org.springframework.web.servlet.view.xslt.XsltViewResolver">
<property name="prefix"...
I am trying to create a new application using XSLT views. I started following the samples in ProSpring and Expert Spring MVC, but when I looked at the API, it clearly states that AbstractXsltView is...
Just finished (for the most part) ProSpring. Am creating my data access layer using Dao classes. Underlying DB is MySQL. All tables use an integer primary key. Naturally, auto-increment seems like a...