Hibernate OGM Deployment on OpenShift
Join the DZone community and get the full member experience.
Join For FreeHibernate Object/Grid Mapper (OGM) is used to provideJava Persistence (JPA) support for NoSQL data stores. At this year's JUDCon London, Hardy Ferentschik presented a talk on how to deploy this Hibernate variant on JBoss AS 7 and OpenShift Express.
But lucky for you, he posted the code on GitHub - ogm-kitchensink, and gave a link to the README.md so you can get started even if you couldn't attend. The demo uses OGM 3.0 Alpha 2 so you'll need to define a Hibernate 3 module even though AS 7 comes with Hibernate 4. Use these instructions. The demo comes with a handy Arquillian test and last but not least, tells you how to deploy on RedHat's PaaS - OpenShift Express:
If you still have holes in your understanding of the demo, go ahead and read through the README.md, script.md and the presentation slides for more information.
Source: http://relation.to/Bloggers/JUDCon2011LondonOGMIntroductionDemo
Last but not least, let's push the demo into OpenShift Express. This is as simple as signing up for OpenShift, installing the rhc command line tools and then running:
$ rhc-create-domain -n <domain> $ rhc-create-app -a <app> -t jbossas-7.0 --nogit ... Success! Your application is now published here: http://<name>-<domain>.rhcloud.com/ The remote repository is located here: <repo-url> ... $ git remote add openshift <repo-url> $ git push -f openshift masterThe interesting bit here is to get the required modules installed on the server side. It turns out, all you have to do is to check add them to the git repository under .openshift/modules. --Hardy Ferentschik
If you still have holes in your understanding of the demo, go ahead and read through the README.md, script.md and the presentation slides for more information.
Source: http://relation.to/Bloggers/JUDCon2011LondonOGMIntroductionDemo
Hibernate
OpenShift
Opinions expressed by DZone contributors are their own.
Trending
-
DZone's Article Submission Guidelines
-
Structured Logging
-
Effective Java Collection Framework: Best Practices and Tips
-
Understanding Dependencies...Visually!
Comments