This is probably a little late, but for rapid development, you can't beat grails. Dynamic,RoR-like, but built on hib/spr/sprmvc,with nice hooks for java.
Type: Posts; User: puffybsd; Keyword(s):
This is probably a little late, but for rapid development, you can't beat grails. Dynamic,RoR-like, but built on hib/spr/sprmvc,with nice hooks for java.
I've set some breakpoints in my advice which I can never seem to hit...but if i set proxyTargetClass=true, I get a message in eclipse saying that it can't hit said breakpoint because of missing line...
I'm working thru the same issue now, can you post some more code? The one that 'cuts it'?
I was quite happy working with SpringMVC, and now that I'm working with struts, I have to say that you would not be doing anyone any favors by choosing struts over SpringMVC.
Forget about...
Thanks, exploring that package, I came across the SingleConnectionDataSource, which seems like a DataSource wrapper around a connection - exactly what I need for the near-term.
Thanks for your...
Need to use JdbcDaoSupport with legacy app that's using connections instead of datasources. What's the best approach for this?
No javadocs on the public method, ctrl_shift_g in eclipse doesn't return any references (would that work on a jar in eclipse anyway?).
Just checked the cvs head - and there's not comments in there...
jbalint,
Thanks for the reply. We originally passed on the PropertyOverrideConfigurer because we need to read our properties from the system, and that functionality seems to be available only in...
Hey Kodos,
can you clarify your statement:
How does PropertyPlaceholderConfigurer know to resolve the property ${propertiesFileLocation}? Does it look for a system property called...
I'm using PropertyPlaceholderConfigurer to initialize hibernate. For SQL Server, I need a hibernate.default_schema, for Oracle, I cannot have one.
If the default_schema property is left out of...
Better to use load if possible for entities. load checks 2nd level cache, find only populates it (besides associations).
Using OSIVFilter - came across the common read-only error everyone seems to have when they first use it. I set up a TransactionInterceptor for my hibernate transaction manager, but it doesn't seem...
Perhaps more specific: is anyone using a bean utility class, or BeanInfo to configure ui properties of their JavaBean domain objects?
Anyone have suggestions for a clean ui implementation that would allow a 'ui' javabean to configure a domain javabean? For example, the order to display properties, formatting, visibility?
Thanks Alef. I got turned upside down because the
<error-page>
<error-code>404</error-code>
<location>filenotfound.jsp</location>
</error-page>
was returning an empty web...
I'd like to replace the default error page for tc 5.5 in my app. I've
added an error.jsp page to WEB-INF/jsp, and a SimpleMappingExceptionResolver. I am using JSTL.
In my log:
WARN...
I had this issue (again) when I switched to https.
Thanks for the solution. This was a big help for me.
Thanks Rob! That did the trick. I actually went with attachment Content-Disposition for this case. The crashes were due to the fact that I am using a template whose author loves the use of...3d...
I'm using SimpleFormController to upload a file and return an ExcelView as the successView. The upload is working and the view is rendering an
excel file, but the name is the same as formView:
...
You can always redirect from a SimpleFormController to another
controller using this in your onSubmit(...):
RedirectView view = new RedirectView("other.htm");
return new...
Great - I've built the sandbox jar and plan to start using this puppy as soon as I can. Thanks for the update.
Very excited about this project...any dates yet?
"At present, Spring Web Flow is considered production-quality software,..."
-Confluence wiki...
I'm taking this to mean that the developers are...
Or as mentioned, extend HibernateDaoSupport, and wrap a function around
getHibernateTemplate().executeFind(...):
public List find(final int firstResult, final int maxResults) {
return...
Thanks for the great info Keller. I think this is something that I'll have to keep my eyes on for a while, and choose the best fit on a case-by-case basis.
As far as css tricks go, I went down...
Keller, that's an interesting read. I'm not sure what to make of it. According to the text, I am sending tag soup to the parser. But at the sametime, I'm validating all of my documents for...