Archive for June, 2005

Plenty of Jini news…

Thursday, June 30th, 2005

The latest Jini Community newsletter [en] is of real good quality.
This newsletter presents a must-read paper on Jini leases [en] that explain them very well for beginners. There is also a link to a paper explaining how to build a compute grid with Jini technology [en].
I’m an avid reader of weblogs, and I just discovered today with this […]

Acegi Security and Java 5 annotations…

Friday, June 24th, 2005

Keeping up with my recent trend towards using Java 5 annotations, I just came up with some annotations for Acegi Security.
These annotations are similar to the ones already available using Commons Attributes [en], so it should be prettry straightforward to migrate.

Swing: Advanced table trick…

Thursday, June 23rd, 2005

The project I’m currently working on at work involves quite a lot of Swing code. We are using mostly Spring Rich Client [en] which is really great.
I am using the settings support and wanted to store the columns the user is interested in (meaning the one he would like to be visible) and also how the […]

Spring, Hibernate and Java 5 annotations

Thursday, June 23rd, 2005

I spent a little bit of time figuring out how to use the Spring Framework [en] with Hibernate [en] and Java 5 annotations. I’m not speaking of Hibernate [en] annotations, but instead transactional annotations.
Anyway, here is the solution I found:

<bean id=”transactionManager” class=”org.springframework.orm.hibernate3.HibernateTransactionManager”>
<property name=”dataSource” ref=”dataSource”/>
[…]

Tapestry with Java 5 getting better…

Monday, June 20th, 2005

Tapestry is getting better and better in regards to Java 5 support. The extension I spoke about in a previous post on Tapestry annotations as been somehow used as a basis for the official annotations in Tapestry.
Howard gives a nice explanation on how using annotations can simplify your code.
Update: Howard commented my post and precised […]