is there any cms applications with spring and hibernate and jsp - content-management-system

Hi I Want to know about the existing cms applications using the spring and hibernate and jsp kindly help me to download the applications
please help me to download the application
thanks in advance

Spring Content allows you to build your own CMS in pretty short order. Would that work for you?

Related

IBM websphere to JBOSS migration

I want to migrate EAR and WAR applications from WAS 8 to JBOSS AS 7.
Can any one provide any Check List for the same?
There's an automated pluggable rule-based migration tool JBoss Windup. Run the tool and get a report of what needs to be done to migrate.
You can also customize this tool to cover your specific code patterns you need to migrate. Sharing your custom rules back to the community is highly appreciated.
Have fun :)
WAS has tool Application Migration toolkit to check application being migrated from WebLogic /Jboss to WAS , not sure if such tool exist for JBOSS
http://www.ibm.com/developerworks/websphere/downloads/migtoolkit/compmig.htmlc

Jboss Application servlet 7.x deployment query?

I was using jboss 5 so far my project. My project used following technology jsp,servlet,ejb3,postgres and hibernate. Now i have a plan to migrate jboss 7. i need some information related to persistence.xml and datasource. because jboss 7 directory structure looking completely different. please give a suggestion how to migrate? thanks in advance.
You need to provide a lot more details on your setup for this to one just one simple answer, but I can provide these links as an answer:
https://docs.jboss.org/author/display/AS7/How+do+I+migrate+my+application+from+AS5+or+AS6+to+AS7
https://docs.jboss.org/author/display/AS71/How+do+I+migrate+my+application+from+AS5+or+AS6+to+AS7

How to use CDI on TomEE

I'm currently writing JSF code and using Mojarra 2.1.6-FCS, using Tomcat and Eclipse Juno. Now I want to move to CDI, for I discovered it's more practical than JSF.
I need to know stuff like whether I need web.xml and faces-config.xml in order to write and run CDI code; in JSF it's not required.
I just need easy step-by-step instructions for deploying to TomEE. Any flash put into my asking would be way appreciated, thanks a punch.
You don't need web.xml or faces.config.xml just to use CDI. The only thing you need is beans.xml (which can be an empty file!), placed inside the WEB-INF directory.
I can't give you step-by-step instructions for deploying a CDI application on TomEE, but it should be no different to deploying any other application. Have you read the TomEE and Eclipse tutorial?
here a sample http://tomee.apache.org/examples-trunk/jsf-cdi-and-ejb/
hope it will help you

jbpm with liferay

I can run a sample workflow done with jbpm5 ​​outside of liferay
but now I want to run this example in liferay
So the problem is how to integrate jbpm5 with liferay
I think I need to edit some configuration files in liferay
I'm reading these instructions but I can not find the solution
It's not than simple if you are trying to integrate jBPM5. As you can see the tutorial that you mention has being written for jbpm 3.1.2, a very old version. It will be a great community contribution to integrate jBPM5 to liferay, so if you are interested we can guide you, but you will need to do the work and research to get it working. I can help you with the jBPM5 but you will need to dig into the liferay bits.
I suggest if you want to run Workflow inside Liferay, first you must find a plugin for workflow engine. As fas as I know, Liferay supports Activity, JBPM, Kaleo,.. Have you downloaded JBPM plugin for Liferay? Because for default Liferay using Kaleo.

Eclipse EAR module publish log

I am using weblogic worshop to develop my spring based application. Basically it takes lot of time to publish the application to weblogic server. Is there any way to find out what’s going on when eclipse try to build and deploy the project? Basically does it maintain any log file?
Thanks ,
Manoj
Weblogic does a stupid thing according to my experience. If you deploy some WAR, it extracts the libraries in it, and does some analysis in them. You can avoid this behaviour by removing the "static" (not changed by you during work) libraries from the war during development. After removal, add them to system classpath of the domain. It will publish and start a lot faster.
You will find better support for developing Spring applications for WebLogic Server if you migrate to Oracle Enterprise Pack for Eclipse. Workshop is legacy software that is no longer being actively developed. Using Workshop is only necessary for those developing with the deprecated Apache Beehive framework.
http://www.oracle.com/technetwork/developer-tools/eclipse/overview/index.html
OEPE includes a much newer publisher implementation, so you may find your issue resolved. If not, please post to OEPE forum for direct access to people who can answer you question.
Cannot post a forum link, but you can find it from the above URL or via Google.
Thanks Konstantin and Gabor for replying to my question.
Konstantin - I am using Oracle Weblogic workshop 10.3 and I am restricted to use this IDE only.I guess it has OEPE correct me if I am wrong.Also I tried the FastSwap action but everytime I save the changes to a java file the server says -'Publish' and I have to republish the entire application which is taking lot of time.
Thanks,
Manoj