Apache Tomcat Maven插件uriEncoding无法使用https

时间:2016-01-05 18:56:08

标签: maven tomcat utf-8 https maven-tomcat-plugin

我正在使用tomcat7-maven-plugin来运行我的应用程序(tomcat7:run)。我在没有https的配置中使用<uriEncoding>utf-8</uriEncoding>,一切正常。但是一旦我添加了https,编码就停止了。

当我在客户端上发出这样的请求时:https://localhost:8443/ROOT/checkName?mediaName=%C3%A7%C3%A7

我在服务器上收到:çç

以下是我的一些pom.xml:

            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <configuration>
                    <warSourceDirectory>src/main/webapp</warSourceDirectory>
                    <path>/${project.warname}</path>
                    <warFile>target/${project.warname}##${maven.build.timestamp}-${project.name}-v${project.version}</warFile>
                    <uriEncoding>utf-8</uriEncoding>

                    <!-- HTTPS -->
                    <httpsPort>8443</httpsPort>
                    <keystoreFile>${user.home}/.mvnkeystore</keystoreFile>
                    <keystorePass>changeit</keystorePass>
                    <!-- HTTPS -->

                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>mysql</groupId>
                        <artifactId>mysql-connector-java</artifactId>
                        <version>5.1.25</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.tomcat.embed</groupId>
                        <artifactId>tomcat-embed-core</artifactId>
                        <version>${tomcat.version}</version>
                    </dependency>
                </dependencies>
            </plugin>

和web.xml:

    <security-constraint>
        <web-resource-collection>
            <web-resource-name>securedapp</web-resource-name>
            <url-pattern>/*</url-pattern>
        </web-resource-collection>
        <user-data-constraint>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

如果我删除https标记,则uriEncondig会重新开始工作。

2 个答案:

答案 0 :(得分:3)

这是Apache Tomcat Maven插件的一个报告错误 - MTOMCAT-264。 有一个开放的PR in github来修复它。

您可以使用serverXml参数解决此问题,并附上文档中提到的警告。

  

serverXml:要使用的server.xml注意如果使用此项,则必须在此文件中配置webapp路径。

答案 1 :(得分:1)

我认为您需要在服务器中配置HTTPS连接器。请参阅here相关问题。您在httpsPort属性上分配值的事实意味着您只需启用连接器(我猜有一些默认值) - 作为plugin documentation suggests

您需要使用以下内容配置连接器:

<Connector port="443" protocol="HTTP/1.1"
           maxThreads="150" connectionTimeout="20000"
           SSLEnabled="true" scheme="https" secure="true"
           keystoreFile="conf/.keystore"
           keystorePass="changeit"
           clientAuth="false" sslProtocol="TLS"
           URIEncoding="UTF-8" compression="on"/>

希望有所帮助