Java 不受支持的SignatureMethodException:tomcat和jerseyoauth中的HMAC-SHA1异常

Java 不受支持的SignatureMethodException:tomcat和jerseyoauth中的HMAC-SHA1异常,java,oauth,jersey,tomcat7,Java,Oauth,Jersey,Tomcat7,这是我的pom <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"> <modelVersi

这是我的pom

    <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.mkyong.common</groupId>
        <artifactId>RESTfulExample</artifactId>
        <packaging>war</packaging>
        <version>1.0-SNAPSHOT</version>
        <name>RESTfulExample Maven Webapp</name>
        <url>http://maven.apache.org</url>

        <repositories>
            <repository>
                <id>maven2-repository.java.net</id>
                <name>Java.net Repository for Maven</name>
                <url>http://download.java.net/maven/2/</url>
                <layout>default</layout>
            </repository>

        </repositories>
        <properties>
            <project.build.java.target>1.6</project.build.java.target>
        </properties>

        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.8.2</version>
                <scope>test</scope>
            </dependency>

            <dependency>
                <groupId>com.sun.jersey</groupId>
                <artifactId>jersey-server</artifactId>
                <version>1.8</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-core</artifactId>
                <version>4.3.0.Final</version>
            </dependency>

            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.28</version>
            </dependency>




            <dependency>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectjrt</artifactId>
                <version>1.6.5</version>
            </dependency>

            <dependency>
                <groupId>org.mockito</groupId>
                <artifactId>mockito-all</artifactId>
                <version>1.9.5</version>
            </dependency>



     <dependency>
        <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
        <artifactId>oauth-server</artifactId>
        <version>1.18</version>
    </dependency>
                <dependency>
        <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
        <artifactId>oauth-signature</artifactId>
        <version>1.18</version>
    </dependency> 

          <dependency>
        <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
        <artifactId>oauth-client</artifactId>
        <version>1.18</version>
    </dependency>


        </dependencies>

        <build>
            <finalName>RESTfulExample</finalName>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>1.5</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>aspectj-maven-plugin</artifactId>
                    <version>1.3.1</version>
                    <configuration>
                        <complianceLevel>1.6</complianceLevel>
                    </configuration>
                    <executions>
                        <execution>
                            <goals>
                                <goal>compile</goal>
                                <!--<goal>test-compile</goal> -->
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
  </project>
这是我的客户

public class Sample1 {
    public static final String HOSTNAME = "http://localhost:8080/RESTfulExample/rest/hello/planetext";
    public static final String CONSUMER_KEY = "OwnAccount"; 
    public static final String CONSUMER_SECRET = "OwnAccount";


    /**
     * @param args
     */
    public static void main(String[] args) {
        Client client = Client.create();
        OAuthParameters params = new OAuthParameters().signatureMethod("HMAC-SHA1").consumerKey(CONSUMER_KEY);
        OAuthSecrets secrets = new OAuthSecrets().consumerSecret(CONSUMER_SECRET);
        OAuthClientFilter filter = new OAuthClientFilter(client.getProviders(), params, secrets);
        WebResource res = client.resource(HOSTNAME );
        res.addFilter(filter);
          String responseString = res.get(String.class);
        System.out.println(responseString);
    }

}
我使用以下誓言和泽西pom指的是该网站

我得到了这个例外

com.sun.jersey.oauth.signature.UnsupportedSignatureMethodException:HMAC-SHA1 在com.sun.jersey.oauth.signature.OAuthSignature.getSignatureMethod(OAuthSignature.java:257)

我正在使用Tomcat7


我在网上搜索,但找不到tomcat的原因。我遗漏了什么?有人为tomcat面对过吗?

我在将jersey server jar更新为1.18时解决了这个问题。我以前使用的是jersey server 1.8 jar

public class Sample1 {
    public static final String HOSTNAME = "http://localhost:8080/RESTfulExample/rest/hello/planetext";
    public static final String CONSUMER_KEY = "OwnAccount"; 
    public static final String CONSUMER_SECRET = "OwnAccount";


    /**
     * @param args
     */
    public static void main(String[] args) {
        Client client = Client.create();
        OAuthParameters params = new OAuthParameters().signatureMethod("HMAC-SHA1").consumerKey(CONSUMER_KEY);
        OAuthSecrets secrets = new OAuthSecrets().consumerSecret(CONSUMER_SECRET);
        OAuthClientFilter filter = new OAuthClientFilter(client.getProviders(), params, secrets);
        WebResource res = client.resource(HOSTNAME );
        res.addFilter(filter);
          String responseString = res.get(String.class);
        System.out.println(responseString);
    }

}
<dependency>
    <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
    <artifactId>oauth-server</artifactId>
    <version>1.18</version>
</dependency>
            <dependency>
    <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
    <artifactId>oauth-signature</artifactId>
    <version>1.18</version>
</dependency> 

      <dependency>
    <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
    <artifactId>oauth-client</artifactId>
    <version>1.18</version>
</dependency>
try {
      // exception is thrown from here 

            if(!OAuthSignature.verify(request, params, secrets)) {
                throw new WebApplicationException(401);
            }
        } catch (OAuthSignatureException e) {
            throw new WebApplicationException(e, 401);
        }