我正在尝试使用JPA和RESTful api将对象持久保存到数据库中。在postman中测试post方法时,它可以工作并将行成功插入数据库中。但是,在chrome中进行测试时,会给我一个HTTP错误-不允许使用405方法吗?
这是我的方法
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Path("{description}/{name}")
public Response postHobby(
@PathParam("description") String description,
@PathParam("name") String name) {
fHobby.postHobby(description, name);
return Response.ok("success").build();
}
我的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>Krak</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Krak</name>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
<version>2.5.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.12</version>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>1.19.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
如果您愿意,我可以提供任何其他信息
答案 0 :(得分:2)
这很可能是因为您只是通过在浏览器的地址栏中输入URL并单击Enter来调用此命令(由于您使用@PathParam
,因此得出了这个结论,这意味着您可以嵌入所需的数据直接在网址中)。这将导致HTTP GET
。您的方法声明它是一个接受HTTP POST
请求的HTTP端点。因此,应用服务器将返回405 Method not allowed
,因为它在该端点不接受HTTP GET
请求。
答案 1 :(得分:0)
几天前,我试图与Spring做类似的事情,但我意识到我在浏览器中输入了错误的端点。如果这是MVC应用程序,请检查您的控制器参数。您有任何可以启用的日志记录吗?