I define some struts xdoclet tags in the same java file as 

/**
 *
 * Issues
 *
 *
 * @struts:action path="/listInvestors"
 *              name="listInvestorsForm"
 *              scope="session"
 *              validate="false"
 *              parameter="listInvestors"
 *              
 * @struts:action-forward name="view"
 *              path="/listInvestors.jsp"
 *
 *
 * @struts:action path="/addInvestor"
 *              name="investorForm"
 *              scope="request"
 *              parameter="addInvestor"
 *              validate="true"
 *              input="/addInvestor.jsp"
 *
 * @struts:action-forward name="view"
 *              path="/listInvestors.do"
 *              redirect="true"
 *
 */

If I split this into two comments, like this

/**
 *
 * Issues
 *
 *
 * @struts:action path="/listInvestors"
 *              name="listInvestorsForm"
 *              scope="session"
 *              validate="false"
 *              parameter="listInvestors"
 *              
 * @struts:action-forward name="view"
 *              path="/listInvestors.jsp"
 *
 */

/**
 * @struts:action path="/addInvestor"
 *              name="investorForm"
 *              scope="request"
 *              parameter="addInvestor"
 *              validate="true"
 *              input="/addInvestor.jsp"
 *
 * @struts:action-forward name="view"
 *              path="/listInvestors.do"
 *              redirect="true"
 */

-then the first one is ignored. 

Is this a bug or a feature?

-- 
Torgeir Veimo <[EMAIL PROTECTED]>



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to