Jersey - servlet上下文路径和/或servlet路径包含百分比编码的字符

时间:2015-03-12 16:26:39

标签: java rest tomcat jersey

我正在使用Jersey和Tomcat,每当我点击链接时,我都会收到以下消息:

HTTP Status 500 - The servlet context path and/or the servlet path contain
characters that are percent encoded

type: Exception report

message: The servlet context path and/or the servlet path contain characters
         that are percent encoded

description: The server encountered an internal error that prevented it from
             fulfilling this request.

exception:
    javax.ws.rs.ProcessingException: The servlet context path and/or the servlet path
    contain characters that are percent encoded
        org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:317)
        org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:221)
        org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

note: The full stack trace of the root cause is available in the Apache Tomcat/7.0.56
      logs.

REST服务的路径是:

http://localhost:8070/simple-service-webapp/rest/hello

当我在URL栏中输入它时,它可以正常工作,但是当我点击路径某处的链接时,URL就变成了这个:

http://localhost:8070/simple%2Dservice%2Dwebapp/rest/hello

默认情况下,Jersey不会处理百分比编码的URL。

有人可以帮助我在不删除网址中的短划线的情况下开始工作吗?我的搜索没有提供有效的解决方案。

编目

HelloResource.java

package com.example;

import javax.ws.rs.*;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriInfo;

@Path("hello")
public class HelloResource {

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String sayHelloPlainText(@Context UriInfo uriInfo) {

        String name = uriInfo.getQueryParameters().getFirst("name");

        if (name == null) {
            name = "unknown user";
        }

        return "Hello " + name + "!";
    }

    @GET
    @Produces(MediaType.TEXT_HTML)
    public String sayHelloHtml(@Context UriInfo uriInfo) {

        String text = sayHelloPlainText(uriInfo);

        String result = "<html>" + "<head>" + "<title>Hello Jersey</title>" + "</head>"
                      + "<body>" + "<h1>" + text + "</h1>" + "</body>" + "</html>";

        return result;
    }

    @GET
    @Produces(MediaType.TEXT_XML)
    public String sayHelloXml(@Context UriInfo uriInfo) {

        String text = sayHelloPlainText(uriInfo);

        String result = "<?xml version=\"1.0\"?>" + "<hello>Hello " + text + "!" + "</hello>";

        return result;
    }
}

的index.jsp

<!DOCTYPE html>

<html>

<head>
    <meta charset="UTF-8">

    <title>RESTful Web Application</title>
</head>

<body>
    <h2>My RESTful Web Application!</h2>

    <ul>
        <li><a href="rest/hello">Hello from Jersey</a></li>
        <li><a href="rest/hello?name=Johannes">Hello using parameters</a></li>
    </ul>
</body>

</html>

的web.xml

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <servlet>
        <servlet-name>Jersey Web Application</servlet-name>
        <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

        <init-param>
            <param-name>jersey.config.server.provider.packages</param-name>
            <param-value>com.example</param-value>
        </init-param>

        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Jersey Web Application</servlet-name>
        <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
</web-app>

的pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>simple-service-webapp</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>simple-service-webapp</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <jersey.version>2.16</jersey.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.glassfish.jersey</groupId>
                <artifactId>jersey-bom</artifactId>
                <version>${jersey.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.glassfish.jersey.containers</groupId>
            <artifactId>jersey-container-servlet</artifactId>
        </dependency>
    </dependencies>

    <build>
        <finalName>simple-service-webapp</finalName>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>

                <inherited>true</inherited>

                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.wildfly.plugins</groupId>
                <artifactId>wildfly-maven-plugin</artifactId>
                <version>1.0.2.Final</version>

                <configuration>
                    <id>WildFlyServer</id>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.2</version>

                <configuration>
                    <server>TomcatServer</server>

                    <url>http://localhost:8070/manager/text</url>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

1 个答案:

答案 0 :(得分:2)

我遇到了这个问题。将您的工件ID更改为“SimpleWebApp”(注意我取出了' - ')并且它可以工作。对于我想做的事情,不值得找出为什么这不起作用的确切原因。我认为这不是运动衫,而是关于tomcat的事情。

function FindPath(start, finish, path)
    --Define a table to hold the paths
    local paths = {}
    --Make a default argument
    path = path or {start}
    --Loop through connected nodes
    for i,v in ipairs(start:GetConnectedParts()) do
        --Determine if backtracking
        local loop = false
        for i,vv in ipairs(path) do
            if v == vv then
                loop = true
            end
        end
        if not loop then
            --Make a path clone
            local npath = {unpack(path)}
            npath[#npath+1] = v
            if v == finish then
                --If we reach the end add the path
                return npath
            else
                --Otherwise add the shortest part extending from this node
                paths[#paths+1] = FindPath(v, finish, npath) --NOTED HERE
            end
        end
    end
    --Find and return the shortest path
    if #paths > 0 then
        local lengths = {}
        for i,v in ipairs(paths) do
            lengths[#lengths+1] = #v
        end
        local least = math.min(unpack(lengths))
        for i,v in ipairs(paths) do
            if #v == least then
                return v
            end
        end
    end
end