tomcat7-maven-plugin tomcatManager status code:403, ReasonPhrase:Forbbiden

前端 未结 6 2222
心在旅途
心在旅途 2021-01-30 14:42

I am trying to do mvn clean package tomcat7:deploy but always I get this error: tomcatManager status code:403, ReasonPhrase:Forbbiden

My config

6条回答
  •  甜味超标
    2021-01-30 14:47

    Enough to do like this

    pom.xml

    
      org.apache.tomcat.maven
      tomcat7-maven-plugin
      2.0
      
        /mywebapp
        true
        http://localhost:8080/manager/text
        tomcat
        tomcat
      
     
    

    tomcat-users.xml

    
      
      
      
      
      
    
    

    From http://tomcat.apache.org/maven-plugin-2.0/index.html

    Use http://localhost:8080/manager/text rather than the default tomcat6 url.
    

提交回复
热议问题