Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3211230
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T14:42:41+00:00 2026-05-17T14:42:41+00:00

I’m trying to compile ActionFactory.java file which imports one of my package, RegisterAction.java Here

  • 0

I’m trying to compile ActionFactory.java file which imports one of my package, RegisterAction.java

Here is the file structure:

/com/masatosan/actions/register/RegisterAction.java

/com/masatosan/redirector/ActionFactory.java

According to the ANT output, I think ANT cannot find RegisterAction.java which is imported in ActionFactory.java

It does compile successfully when I manually run javac on console so this must be some classpath setting that ANT is not looking at.

I know I can add some jar to ANT_HOME/lib but in my case, ANT seems not be able to find ActionRegister.java, not jar or something else. Could anyone help me find out what’s wrong?

ANT script

<project name="CompileMasatosan"  default="main"
    basedir="C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\src\com\masatosan">
    <description>
        masatosan compiler
    </description>

    <!-- this invokes all targets -->
    <target name="main" depends="compileAll" />

     <!-- properties -->
    <property name="srcMasatosan" 
        location="C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\src\com\masatosan" />

    <property name="dest"
    location="C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\WEB-INF\classes" />

    <property name="redirectorSrc" location="${srcMasatosan}\redirector" />

     <!-- complie -->
    <target name="compileAll">
        <javac target="1.5" source="1.5" srcdir="${redirectorSrc}" destdir="${dest}" />
    </target>

</project>

Environment Variable

ANT_HOME=C:\apache-ant-1.8.1-bin\apache-ant-1.8.1

 CLASSPATH=C:\Program Files\Java\jre6\bin;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib;C:\Program Files\Java\jre6\bin;C:\P
rogram Files\Apache Software Foundation\Tomcat 6.0\lib\mail.jar;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib;C:\Program F
iles\Java\jre6\bin;C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\src\com\masatosan\actions\register;

ActionFactory.java

package com.masatosan.redirector;
import com.masatosan.actions.register.RegisterAction;

public class ActionFactory {
//some code here...

}

ANT output

C:\apache-ant-1.8.1-bin\javac_masatosan\debug>ant
Buildfile: C:\apache-ant-1.8.1-bin\javac_masatosan\debug\build.xml

compileAll:
    [javac] C:\apache-ant-1.8.1-bin\javac_masatosan\debug\build.xml:47: warning: 'includeantruntime' was not set, defaulting to build.s
ysclasspath=last; set to false for repeatable builds
    [javac] Compiling 4 source files to C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\WEB-INF\classes
    [javac] C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\src\com\masatosan\redirector\ActionFactory.java:1
5: cannot find symbol
    [javac] symbol  : class RegisterAction
    [javac] location: package com.masatosan.actions.register
    [javac] import com.masatosan.actions.register.RegisterAction;
    [javac]                                      ^
    [javac] C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\head_first\src\com\masatosan\redirector\ActionFactory.java:2
4: cannot find symbol
    [javac] symbol  : class RegisterAction
    [javac] location: class com.masatosan.redirector.ActionFactory
    [javac]             actions.put("POST/process_register.do", new RegisterAction());
    [javac]                                                         ^
    [javac] 2 errors

BUILD FAILED
C:\apache-ant-1.8.1-bin\javac_masatosan\debug\build.xml:47: Compile failed; see the compiler error output for details.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T14:42:42+00:00Added an answer on May 17, 2026 at 2:42 pm

    It looks like you are specifying only one “sourcepath” to “javac” – and not both. Maybe you should do

    <target name="compileAll">
      <javac target="1.5" source="1.5" destdir="${dest}">
        <src path="${redirectorSrc}"/>
        <src path="${srcMasatosan}"/>
      </javac>    
    </target>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.