Two Laptop Bag
The moose likes Ant, Maven and Other Build Tools and the fly likes uriRoot implicitly set to Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » Ant, Maven and Other Build Tools
Reply Bookmark "uriRoot implicitly set to" Watch "uriRoot implicitly set to" New topic
Author

uriRoot implicitly set to

naveen gupta
Ranch Hand

Joined: Apr 12, 2006
Posts: 129
i am compiling a jsp file using the ANT task in Apache to generate the java file

i get the following error

uriRoot implicitly set to "C:\jakarta-tomcat-4.1.31\webapps\login"

My directory structure is

C:\jakarta-tomcat-4.1.31\webapps\login

in the login folder, i have

index.jsp
build.xml


Note: there is a JavaBean ( LoginInfo.java ) too in that folder, which is referenced in jsp

#############################

Below is the ANT file

<project name="login" default="compile" basedir=".">
<description>
Login Jsp example
</description>

<target name="compile" description="compile the source " >
<jspc srcdir="."
destdir="."
verbose="9" >
<include name="**/*.jsp" />
</jspc>
</target>
</project>

###########################


any ideas ? Ask me if you need more information aboout the file or structure
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56528
    
  14

Moved to the Ant foum.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: uriRoot implicitly set to
 
Similar Threads
Pre Compiling jsp
Compiling JSPs into directories
Where do I find JspC
Jsp precompile with Ant and NullPointerException
Ant Undeploy Problem