Categories
Development

DWR 1.1 released

I’ve been using DWR a bit, and it’s a great library to do some basic AJAX with. 1.1 has been released with some improvements. Details here.

Categories
Development

Another one on SOA antipatterns

WebSphere Journal has an article on SOA antipatterns here.

Via JavaBin

Categories
Development

Restricting access to methods to avoid DTOs

There’s been a discussion at the Domain Driven Design group about how to restrict access to certain data in the domain without using DTOs. Sergio Bossa has a blogentry on it here on how to restrict access with proxies. It’s a good solution if you need to restrict access locally, but if your need is to transfer objects remotely you are right back at using DTOs.

Oh yeah, and discovered Dozer for doing object-to-object mappings.