Suche
Ads
Blogroll
Me
Tools
Tag Cloud
ajax build cassandra cloud configuration corporate database derby development process distributed dwr eclipse england gem hibernate it java linux math mysql nosql osgi osx pde pde-build persistence php properties rails Rezepte saas scalability software Software-Development string svn system.out teaching toronto usability xampp xdebug xml yaml zendframeworkKategorien
Archiv
- Januar 2013
- Dezember 2012
- September 2012
- Juli 2012
- Januar 2012
- Dezember 2011
- Mai 2011
- März 2011
- Januar 2011
- Oktober 2010
- September 2010
- August 2010
- Juli 2010
- Juni 2010
- Mai 2010
- April 2010
- März 2010
- Februar 2010
- Januar 2010
- Oktober 2009
- August 2009
- Juli 2009
- Dezember 2008
- November 2008
- Oktober 2008
- März 2008
- Februar 2008
- Januar 2008
- Dezember 2007
- November 2007
- Oktober 2007
- Mai 2007
- April 2007
- Februar 2007
- Januar 2007
- September 2006
- Juni 2006
- Mai 2006
- April 2006
- März 2006
- Februar 2006
- Januar 2006
- November 2005
- Oktober 2005
- August 2005
- Mai 2005
- April 2005
- März 2005
- Februar 2005
- Januar 2005
- Mai 2004
- April 2004
- Oktober 2003
- September 2003
- August 2003
- Januar 1970
Schlagwort-Archive: hibernate
Using Hibernate EventListeners to encrypt / decrypt properties of an entity based on other properties
Update 2012/07/24: It turns out my approach below is NOT GOOD! What I wanted to do is conditional encryption which is also asked in this Jasypt forum, where they say one should implement your own UserType. http://forum.jasypt.org/Hibernate-and-Conditional-encryption-td5586032.html The serious problem … Weiterlesen
Veröffentlicht unter Software-Development
Verschlagwortet mit decryption, encryption, hibernate, jasypt, java
Kommentare deaktiviert
Initializing Hibernate without XML
This article just shows a code snippet I have used for initializing Hibernate in pure JAVA code without the hibernate.xml which you would normally use. public void start(BundleContext context) throws Exception { initHibernate(context); } private void initHibernate(BundleContext context) { … Weiterlesen
Veröffentlicht unter Software-Development
Verschlagwortet mit hibernate, java, persistence, xml
99 Kommentare
Hibernate Transaction Handling in DWR
I am currently building a web-application using OSGI (HTTP Service) and Hibernate. I also use DWR for all the AJAX stuff in the application. DWR uses a special DWRServlet which handles the interaction of the browser with the server side. … Weiterlesen
Veröffentlicht unter Software-Development
Verschlagwortet mit ajax, dwr, hibernate, osgi
1.064 Kommentare
Resolving Hibernate exceptions with MySQL on Linux because of case-sensitive table names
Today I tried to deploy my application from my OSX dev machine to a server on Amazon EC2. I was running into exceptions like this: Caused by: org.hibernate.exception.SQLGrammarException: could not load an entity: [app.model.entities.Jobs#8] at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:90) at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66) at org.hibernate.loader.Loader.loadEntity(Loader.java:1895) … Weiterlesen
Veröffentlicht unter Software-Development
Verschlagwortet mit hibernate, linux, mysql, osx
6 Kommentare