I am working to build a common 'framework' and want to leverage Spring and all it's good things and make those good thing available to development teams in a managed way. In order to achieve this...
Type: Posts; User: derrickhackman; Keyword(s):
I am working to build a common 'framework' and want to leverage Spring and all it's good things and make those good thing available to development teams in a managed way. In order to achieve this...
what is real odd is when i revert my spring.jar and spring-webmvc.jar to the 'old' versions (use spring-modules_0.8.jar) and spring 2.1 there is no issue with the spring:bind tag.
weird, must be...
I am not doing anything strange and have been using Spring for years... I have done the sanity check and have done some searching and found nothing.
Check this out though... when I use the
...
I am getting a very strange binding issue/exception with Spring 2.5 that I have never run into before:
the simple jsp page:
<spring:bind path="systemLogin.firstNm">
<td...
Looks like I need to change the existing controllers and the DispatcherServlet to the DispatchPortlet. Once this is done, the current JSP resolvers will continue to work and I will not have Portlet...
Jorg, thank you for your quick reply. Just so I am completely clear, I would like to keep the existing Spring MVC model for the current 'admin' or 'production' site however include a new 'customer'...
I am new to portlets and am curious if there is a way to integrate portlets with existing Spring MVC technology? I would like to add a portal page which includes several portlets into my application...
I would like to integrate the TinyMCE editor into my Spring application however the advanced TinyMCE controls call *.htm files that are to be used by TinyMCE. My web.xml file has a servlet mapping of...
I have the need to index uploaded documents placed in my (Spring Module)JCR as well as domain object stored in my database ; accessed via a Hibernate3 SessionFactory. I am curious about the Lucene...
OK, I have the JCR wirings in place and while trying to start the web application in Tomcat 5.5 I am getting the following exception:
java.lang.NoClassDefFoundError:...
Thanks Costin! I will check those references.
I looked at Alfresco is some detail and spoke to a sales rep to establish what an OEM license would look like (I want to integrate it as a unit into our application and since they have a GPL I need...
upon closer inspection ... AtLeap isn't going to cut it.
Any other cool ideas???
Thank you for the suggestion. I was looking at Alfresco as a possibility and it appears their SDK is a real possibility.
Blandware AtLeap is nice solution.
I have the need to tie in a content management system into my Spring/Hibernate/Acegi application and am curious to know what open source CMS packages integrate well with Spring. My application will...
yep you can do it directly too... that will work!
I had a similar issue, setting the URL dynamically and I solved it in a bit different manner.
I created a service class called HttpInvokeProxyFactory as such:
public class...
All set ... thanks.
For those that want the solution please read the post on the OSWF forum.
http://forums.opensymphony.com/thread.jspa?threadID=54387&tstart=0
I have a very similar issue as listed above however the OSWorkflow API has changed and there is no loadObject(clazz) method on the AbstractWorkflow object (OSWF version 2.8.x).
I need to have...
Read my thread ... what you are trying to do is similar. Try using the annotations rather than <aop> tags ...
http://forum.springframework.org/showthread.php?t=31348
As an update to my issue, it has been resolved in the following manner:
Spring configuration (aop-spring.xml)
<!-- Enable autoproxying -->
<aop:aspectj-autoproxy/>
<bean...
Ramnivas, I will try using the @AspectJ annotations to get this to work. Is there someplace I may watch the status of this issue?
Thanks again for your help.
-Derrick
Before I get into the issue, this is what I am trying to do. I have Spring 2 wired to Hibernate 3 and am using the tx tags with my entire service layer wired with tx management. I have the use case...
The @Transactional annotation did not solve the problem. I will have to dig into this a bit. Any other tips are appreciated.
Thanks
-Derrick
Thank you, I will read http://www.springframework.org/docs/reference/transaction.html this article as well.