Yes I am quite sure, I can show you a code snip of the build.xml file
<!-- Generate web deployment descriptors -->
<target name="gen-web" description="XDoclet generate web depoyment
descriptors">
<!-- Define the XDoclet webdoclet task -->
<taskdef name="webdoclet" classname="xdoclet.modules.web.WebDocletTask"
classpathref="xdoclet.path" />
<!-- Use WebDoclet to web.xml, struts-config.xml, and TLDs -->
<mkdir dir="${build.stage_web}/WEB-INF"/>
<mkdir dir="${build.compile_web}/META-INF/tlds"/>
<webdoclet force="true"
destdir="${build.stage_web}/WEB-INF"
mergedir="./metadata/xdoclet"
verbose="true"
excludedtags="@version,@author">
<fileset dir="./src">
<!-- Speed up XDoclet by limiting number of files it has to process -->
<include name="**/*Action.java" />
.
.
.
</fileset>
And since my action class name is under the package
org.roller.presentation.website.actions;
And the name is DomainAdminEditorAction
It should automatically be included. It must be something else I have
forgotten to do.
Shervin Asgari - System Consultant
M: +47 918 64 148, @: [EMAIL PROTECTED]
Linpro AS - Leading on Linux Tel: +47 21 54 41 00/02
Vitaminveien 1A Fax: +47 21 54 41 01
PB 4 Grefsen, 0409 Oslo WWW: http://www.linpro.no/
Dave Newton wrote:
Shervin Asgari wrote:
Yes I run XDoclet. Because all of my other forwards are working correctly.
But they already existed, and this is a new one.
Are you certain you are running it again to capture the new class's
annotations?
Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]