deploying project to tomcat ROOT
        Posted  
        
            by 
                stsd
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by stsd
        
        
        
        Published on 2013-10-22T15:46:59Z
        Indexed on 
            2013/10/22
            15:53 UTC
        
        
        Read the original article
        Hit count: 258
        
I have deployed my project to tomcat root, and it works fine without any problem. To acheive this I created a ROOT file TOMCAT_HOME/conf/Catalina/localhost/ROOT.xml with content below:
<Context 
  docBase="/home/user/project.war" 
  path="" 
  reloadable="true"  />
So right now I can see my project under localhost:8080/ without any problem.. but I don't know where my project has been extracted, there is even no ROOT directory under TOMCAT_HOME/webapps, any idea?
© Stack Overflow or respective owner