Configuring Spring Security with Active Directory and Concurrent Session Control

Jed:

We build upon a previous post to demonstrate how to use Active Directory for authentication and prevent users from logging in more than once

Posted 03/04/2010 - 12:54

Spring Security: the Basics

Jed:

This is the first in a series of posts that will demonstrate how build a customized Spring Security solution.

Posted 02/25/2010 - 16:42

Hibernate C3P0 Connection Pool Config Changes

Jed:

Hibernate no longer uses the c3p0 connection pool automagically in response to setting a few c3p0 config properties. You have to explicitly tell it to use c3p0 now.

Posted 01/31/2010 - 16:04 // 2 comments

Groovy: Quick and Easy Scripting

Jed:

Groovy provides a viable (hipper? More modern?) alternative to shell scripting and/or Perl.

Posted 01/28/2010 - 15:05

Select list for inline editing with Ruby on Rails

Jed:

It's pretty simple to create a select list for inline edits similar to the text field provided by the Rails plugin InPlaceMacrosHelper.in_place_editor().

Posted 03/19/2009 - 16:21

JQuery event trigger result in WebWork 2.2.x and Struts2, Part 2

Jed:

Making use of the code from Part One

Posted 10/20/2008 - 13:16 // 3 comments

JQuery event trigger result in WebWork 2.2.x and Struts2

Jed:

It is pretty easy construct a JQuery-based event trigger result analogous to the dojo stuff that comes with Struts2 /WebWork 2.2.x

Posted 10/06/2008 - 13:10

Hibernate Patterns: polymorphic many-to-one

Jed:

Recently I found myself in a situation where I needed to define a persistent many-to-one relationship in which the concrete class of the many side could vary. In the past I’d had some issues with class inheritance and Hibernate, which can get sticky because of Hibernate proxies: you can’t always cast the proxies to the desired type. Since I had to find a way to make this work, I decided to give interface inheritance a try.

Posted 02/06/2008 - 18:54 // 8 comments