1

Tomcat 7に新しいmavenプロジェクトをデプロイしようとしました.そして、私は得る

[INFO] Building war: C:\Workspace2\sw\webapp\target\mkyongweb-core-1.0.war
[INFO] [tomcat:deploy {execution: default-cli}]
[INFO] Deploying war to http://localhost:8080/mkyongweb-core
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Cannot invoke Tomcat manager

Embedded error: Server returned HTTP response code: 401 for URL: http://localhost:8080/manager/deploy?path=%2Fmkyongweb-core&war=

tomcat-users.xml

  <tomcat-users>
     <role rolename="admin"/>
     <role rolename="manager"/>
     <user username="admin" password="password" roles="admin,manager"/>
  </tomcat-users>

%MAVEN-HOME%/conf/settings.xml

 <server>
    <id>tomcat7</id>
    <username>admin</username>
    <password>password</password>
 </server>

と私の pom.xml(tomcat6)

   <build>
        <plugins>
            <!-- Maven Tomcat Plugin -->
            <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>tomcat-maven-plugin</artifactId>
            <version>1.0</version>
            <configuration>
            <server>tomcat7</server>
            <url>h ttp://loca lhost:8080/manager</url>                  
            <path>/mkyongWebApp</path>
            </configuration>
        </plugin>           
            <!-- Maven compiler plugin -->
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>

        </plugins>
    </build>

このpom.xmlはエラー401を作ります

[情報] Tomcat マネージャーを呼び出せません 埋め込みエラー: サーバーが HTTP 応答コードを返しました: URL の 401: http://localhost:8080/manager/deploy?path=%2Fmkyongweb-core&war=

そして、以下のプラグインはこれと同じエラーを起こします

  <plugins>
        <!-- Maven Tomcat Plugin -->
        <plugin>            
        <groupId>org.apache.tomcat.maven</groupId>
        <artifactId>tomcat6-maven-plugin</artifactId>
        <version>2.0-beta-1</version>
        <configuration>             
            <server>tomcat7</server>
            <url>http://localhost:8080/manager</url>
            <path>/mkyongWebApp</path>
        </configuration>
    </plugin>           

        <!-- Maven compiler plugin -->
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>

    </plugins>
4

2 に答える 2

0

codehaus tomcat-maven-plugin の代わりに、apache maven tomcat プラグインを使用する必要があります。

http://tomcat.apache.org/maven-plugin-2/

codehaus の Web サイトに記載されているとおりです。

于 2012-07-06T11:51:03.993 に答える
0

サーバーへの参照を指定する必要があります (tomcat7)

     <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
         <configuration>
            <server>tomcat7</server>
            <url>http://localhost:8080/manager/html</url>
         </configuration>
        </plugin>          
于 2012-07-08T13:25:26.473 に答える