Category Archives: Java

Inversoft Partners with Metaverse Mod Squad

   Inversoft announced last week a new partnership with Metaverse Mod Squad. The full press release can be viewed at http://www.prweb.com/releases/2010/03/prweb3702164.htm We are very excited about this new partnership and know that it will help both companies serve our customers … Continue reading

Posted in Java | Leave a comment

Inversoft’s new website and products

   Last week Inversoft launched the Clean Speak family of products and our new website. Clean Speak is a complete rewrite of our old profanity products and our website is a complete rebrand of our company. Clean Speak includes all … Continue reading

Posted in Java | Leave a comment

Hibernate/JPA with missing tables

For some of the Inversoft products I’ve been adding new tables for new features into our standard schema. The tricky part with updating the database is also giving customers all the update scripts that they need to run and instructions … Continue reading

Posted in Hibernate, Java | Tagged , , | Leave a comment

Fixing Java tools on Snow Leopard

I was attempting to work with VisualVM and Tomcat over the past few days on Snow Leopard and it was constantly failing. I was getting errors like this: “attach: task_for_pid(59980) failed (5)” I was also getting errors inside VisualVM and … Continue reading

Posted in Java, OS X, Testing | Tagged , , , , , | 1 Comment

Generic variable to the current type

I just noticed that I’ve been using the Builder pattern with method chaining a lot. Looks like this: FooBuilder builder = new FooBuilder(); Foo foo = builder.add(…).divide(…).multiple(…).builder(); The issue that arises is that I want to store a bunch of … Continue reading

Posted in Java | 6 Comments