I recommend you to utilize Xdoclet (xdoclet.sourceforge.net). With this tool you can 
decorate your businessmethods with deployment information and the deployment 
descriptors are generated automatically both for weblogic and jboss and many others. I 
never wrote or clicked DDs by my self.
The informations are prepended to the associated class or method as javadoc tags like 
the following example.


  |   /**
  |    * @ejb:interface-method view-type="remote"
  |    * @ejb:permission role-name="admin"
  |    */
  |   public void deleteAddress( AddressPK pk) throws RemoveException, FinderException 
{
  |     if ( pk == null) throw new IllegalArgumentException("PK == null");
  |     AddressLocal address = this.addressHome.findByPrimaryKey( pk);
  |     address.remove();
  |   }
  | 

Look at this tool, it's worth.

Gerd


<a 
href="http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827886#3827886";>View 
the original post</a>

<a 
href="http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827886>Reply 
to the post</a>


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to