Entries Categorized as 'JBoss Seam'

OSGi: What modularity can do for you (part 1)

Date August 27, 2008

It’s been a bit since I blogged last, but I wanted to discuss something I’ve been busy with lately. Inspired by a recent presentation by a friend of mine, Craig Walls, and the announcement by Ales Justin to support OSGi in JBoss 5, I decided to see what all the fuss is about. [...]

Managing Environment Specific Configuration with Seam

Date June 17, 2008

Swapping configuration between development and production (and often other environments) is usually a custom solution but often follows a general pattern. Personally, I usually leave this up to properties files. For instance, let’s say we have a specific URL for an adding service and let’s say the URL changes between the development and production [...]

Seam Framework: Experience the Evolution of Java EE

Date June 6, 2008

After a highly anticipated wait, Michael and I are pleased to announce that the Rough Cut of JBoss Seam 2E is available with a new title: Seam Framework: Experience the Evolution of Java EE. The new edition is a major update to the original including:

New chapters on Groovy, JBoss Rules (Drools), Events, [...]

Getting Groovy with Seam after TSSJS

Date April 1, 2008

TSSJS was a great conference this year. Neal Ford, well-known author and ThoughtWorker, initiated the conference by delivering an inspiring keynote address discussing dynamic languages, DSLs (Domain-specific languages), and their role in the evolution of software development. Matt Raible blogged about the presentation and you can find a brief summary here. Polyglot [...]

JBoss Seam 2E Preview Chapters Released

Date February 13, 2008

The first cut preview chapters for JBoss Seam, Second Edition, 2/E have been released. You can access the preview chapters at the Safari Rough Cut site and can retrieve the code examples discussed throughout the chapters from this previous posting.
The full versions of these chapters are available through Safari by subscription as well as [...]

JBoss Seam 2E Examples for Preview Chapters

Date February 11, 2008

The preview chapters will soon be released but you can get a sneak peak by accessing the code examples here. Feel free to download the examples and try them out! Each example project included in the source bundle is a variant of the Seam Hotel Booking example. The booking project demonstrates the use [...]

Announcing JBoss Seam Second Edition

Date January 31, 2008

The much anticipated Second Edition of JBoss(R) Seam: Simplicity and Power Beyond Java(TM) EE (Prentice Hall JBoss) is coming soon. Michael Yuan and myself have teamed up to develop the content for the upcoming Second Edition which will cover the ins and outs of Seam 2, and I don’t just mean bijection
The [...]

Generating Namespaces and schemas for your Seam components

Date January 8, 2008

With Seam you have options for component configuration. One of those options is configuration through use of components.xml. This is especially valuable when you have components that are reused among application instances as it allows the configuration to be specific based on the needs of the application. Seam provides a very simple [...]

Contextual injection of core domain concepts with Seam

Date December 20, 2007

Update: Pete Muir recently posted an alternative to the example described here for the UserProfile object. It avoids potential LazyInitializationException if you access a property which was not initialized inside the loading conversation since the UserProfile is SESSION scoped. I prefer Pete’s approach to the implementation but the concept is the [...]

Setting the conversation-timeout in Seam, why it really does work

Date December 13, 2007

Conversation timeout seems to be a commonly misunderstood Seam concept. I often see postings on the Seam forums claiming that the conversation-timeout doesn’t work! Well, actually it does, you simply have to understand the semantics.
Configuring the conversation-timeout period can be accomplished through the following in your components.xml:
<core:manager conversation-timeout=”900000″ />
At first glance most developers relate [...]