Tag Archive for "java" tag

Annotation Mapping for Ordered Lists in Hibernate

October 20th, 2008 by stevi | 5 comments

Here’s another problem that has a simple solution that took me longer than I expected to find.
I am using Hibernate 3.2.5 as my ORM. In one case, I want to map a child collection of items as an ordered List, taking advantage of the database to do my ordering.
I’m using Annotations intead of the [...]

Finding selected checkbox items in a JSF dataTable

October 9th, 2008 by stevi | 17 comments

This is one of those problems that I couldn’t find a complete example for when I needed it, so hopefully this will save somebody else the extra time it took me to piece it together.
We frequently need to have data tables in our UI, and allow the user to select a subset of those items [...]

How to configure a secure JMS connection using Spring

September 5th, 2008 by stevi | 0

In a comment to my previous post about configuring JMS via Spring, Vikas Kadam asked about configuring a connection to a secure TIBCO EMS topic or queue. As fate would have it, the next issue I dealt with was adding this to my own application. What worked for me was using Spring’s UserCredentialsConnectionFactoryAdapter as my [...]

Simplifying Spring’s JMS configuration for JndiTemplate

August 25th, 2008 by stevi | 9 comments

I’ve spent several days, off and on, wrestling with a chicken-and-egg configuration issue.
I have an application that uses Spring 2.0 and is deployed to Tomcat 5.5. We make heavy use of Tomcat’s JNDI for configuring things like our database connections.
We’re adding JMS functionality to our application; at this point, we merely need to send events [...]

Understanding the protected access modifier and inheritance in Java

May 4th, 2008 by stevi | 1 comment

The Java Tutorial gives the standard definition of the protected access modifier:
The protected modifier specifies that the member can only be accessed within its own package (as with package-private) and, in addition, by a subclass of its class in another package.

But what does this mean in practice? I see a lot of confusion that [...]

Why Are All My Collection Elements the Same as the Last One I Added?

April 29th, 2008 by stevi | 0

I’ve seen several programmers struggle with a similar question. They create a collection of some sort, and add items to it in a loop. When they finish the loop and try to use the collection (or list, or array, or set, or map) it looks like every single object in the collection is the same [...]

Using parent bean definitions in Spring

March 22nd, 2008 by stevi | 1 comment

This post on the JavaRanch Big Moose Saloon led me to fire up Eclipse and write some test code. The question is basically how can you use the ability to map a parent bean as part of a bean definition in Spring.
Let’s look at three classes and see how they can be mapped using Spring.

public [...]

JTOpen: Open source OS/400 and i5/OS drivers

March 10th, 2008 by stevi | 0

My most recent project required me to use JDBC to connect to the database server on an OS/400 server. I had a heck of a time finding drivers, going around and around again on IBM’s site. The client probably had the drivers, but they were relying on us to tell them what went where and [...]

Processing Stored Procedure result sets in Spring

March 8th, 2008 by stevi | 6 comments

Recently, I was using Spring’s JDBCTemplate for my Data Access Layer (DAL). I had a stored procedure that returned a result set, and had to spend quite a bit of search time finding an example of how to process it.
I managed to work it out using both the method of overriding Spring’s StoredProcedure and using [...]