Introduction to Java Content Repository and Apache Jackrabbit

Posted on 1 CommentPosted in Java, Technology Center

Introduction to Java Content Repository and Apache Jackrabbit

With the growing demand in integrating content like photos, music, videos & office docs into business & web applications, we need a content management system that is rich in features, flexible & easy to learn. The Java Community Process developed a solution to this trend – the JSR-170 & JSR-283, also known as the Java Content Repository (JCR) API.

read more...

Improve Java Web Development Server Startup Time

Posted on 5 CommentsPosted in Java, Technology Center

Improve Java Web Development Server Startup Time

When developing an application in a web server environment, the ease of use and startup time of the application are crucial elements for best performance. Due to this, the Hot Code Replace (HCR) debugging technique was developed to “facilitate experimental development and to foster iterative trial-and-error coding,” effectively improving…

read more...

Converting to Tiff on Mac using Java Advanced Imaging

Posted on 1 CommentPosted in Custom Programming, Java

Converting to Tiff on Mac using Java Advanced Imaging

While there are a number of resources on the net talking about converting images to tiff in Java using JAI, I wasn’t able to come across one that works on a Mac. JAI is a separate download from the JDK and unfortunately, there are no mac version of JAI that can be downloaded from the Sun site. Upon reviewing the jar files included in OSX, I found…

read more...

Custom Dependency Injection, Simplified Spring-like Framework

Posted on 1 CommentPosted in Java, Website Design

Custom Dependency Injection, Simplified Spring-like Framework

I’m a Spring fan, but I decided not to use Spring in our recent project because I don’t want bulky jar files in our application but I wanted to have spring-like configuration. So, I’ve decided to write my own dependency injection code in less than 50 lines of code!! To simplify dependency injection, I’ve taken out most of the advanced configuration features and…

read more...