|
My
entity beans are already managed by session beans I created, but I heard good
things about xDoclet-generated facade session beans with regards to caching and
simplification for remote and local clients.
My problem is that I have an AuditBean entity bean. It has about 3 different create methods: ejbCreateABC (String, String,
String) ejbCreateDEF (String, String,
String) ejbCreateGHI (String, String, String,
String, String) etc etc. The facade that is generated provides a session interface to these entity ejbCreate methods. However, the call it generates to my local home entity interface is always localHome.create(params) It has the correct number of parameters for each ejbCreate callback, but this fails to compile, as the callbacks should be localHome.createABC(params) I looked through the documentation on the xDoclet home page, and could not find a way to change this behavior. Any ideas? Many thanks!
|
