- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
出于某种原因,我的@PathVariable
注释根本不起作用,在进行了一些 Google 搜索后,我找不到其他有同样问题的人,这是代码:
@Controller
@RequestMapping("/bot")
public class BotController {
@RequestMapping(value = "/test", method = RequestMethod.GET)
public void test() {
System.out.println("test");
Store.INSTANCE.getChatBot().postMessage("test");
}
@RequestMapping(value = "/say/{text}", method = RequestMethod.GET)
public void say(final @PathVariable("text") String text) {
System.out.println("say: " + text);
Store.INSTANCE.getChatBot().postMessage(text);
}
}
这有效:http://localhost:8080/GithubHookSEChatService/bot/test
这不起作用:http://localhost:8080/GithubHookSEChatService/bot/say/realtest
除此之外 System.out.println("say: "+ text)
没有发生,我唯一的其他线索是:
24-Aug-2014 17:25:21.611 WARNING [http-apr-8080-exec-24]
org.springframework.web.servlet.PageNotFound.noHandlerFound
No mapping found for HTTP request with URI
[/GithubHookSEChatService/bot/say/realtest] in DispatcherServlet with name 'dispatcher'
我已经没有线索了,有人知道发生了什么吗?为什么后者不起作用?
我的相关 web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" 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">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>
和
dispatcher-servlet.xml
:
<?xml version='1.0' encoding='UTF-8' ?>
<!-- was: <?xml version="1.0" encoding="UTF-8"?> -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd" xmlns:context="http://www.springframework.org/schema/context">
<!-- auto scan -->
<context:component-scan base-package="com.skiwi.githubhooksechatservice" />
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:githubhooksechatservice-environment.properties</value>
</property>
</bean>
<!-- properties -->
<bean id="configuration" class="com.skiwi.githubhooksechatservice.mvc.configuration.Configuration">
<property name="rootUrl" value="${env.rootUrl}"/>
<property name="chatUrl" value="${env.chatUrl}"/>
<property name="botEmail" value="${env.botEmail}"/>
<property name="botPassword" value="${env.botPassword}"/>
<property name="roomId" value="${env.roomId}"/>
</bean>
<!-- startup bean -->
<bean name="startup" init-method="start" class="com.skiwi.githubhooksechatservice.mvc.beans.StartupBean" lazy-init="false" />
</beans>
最佳答案
这个问题似乎与 @PathVariable
无关,实际上它也失败了:
@RequestMapping(value = "/test/test", method = RequestMethod.GET)
@ResponseBody
public void test() {
System.out.println("test");
Store.INSTANCE.getChatBot().postMessage("test");
}
发生这种情况是因为有多个级别的子路径,我在 In Spring MVC, how can I map nested URLs such as /settings/, /settings/users/, and /settings/users/delete? 中找到了我的问题的解决方案
您唯一需要做的就是在您的 dispatcher-servlet.xml
中包含以下内容:
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>
然后一切都按预期进行!
关于java - PathVariable 根本不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25473192/
在 Spring MVC 中,@PathVariable("ownerId") String theOwner 和 @PathVariable String theOwner 之间有什么区别吗? 我已
@PathVariable自动填充入实例对象 就在这里记录一个今天刚用到的@PathVariable小技巧,免的以后忘记 @PostMapping("/updateSeeker/{use
我正在使用 SpringMVC 3.1.3。 @PathVariable 如果最后有空格,则会被截断/修剪。有没有办法防止修剪 @RequestMapping(value="deleteConfig
场景:我的 Controller 接受 id 的 Long 值,它是一个路径变量。 我需要传递一个 String,它是对 id 的外部引用。所以我需要将字符串引用解析为其 Long 值。 尝试:当注释
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我正在尝试为我的一种处理表单提交的方法编写集成测试。问题是我在 Controller 的 @RequestMapping 中使用了 @PathVariable int id。当我的测试方法到达 .ha
客户端在服务器上发送(实现无关紧要): /path/items/ + urlencode(id, SOME_ENCODING) 考虑结果 URL 将是: /path/items/my%2Fkey 因此
出于某种原因,我的@PathVariable 注释根本不起作用,在进行了一些 Google 搜索后,我找不到其他有同样问题的人,这是代码: @Controller @RequestMapping("/
在我的 Spring Boot 应用程序中,我添加了一个 API @RequestMapping(value = "/abc/{input}", method=RequestMethod.GET) @
我有以下 Feign 客户端: public interface MyServiceClient { @RequestMapping(method = RequestMethod.GET, v
我正在开发一个 Spring Boot 应用程序。我有以下 REST 端点: @GetMapping(value = { "/person/{name}", "/person/{age}" })
您好,我想用 Spring Rest 编写一个 Get 方法,但我的代码不起作用,代码如下; @RequestMapping(value = "userRight/hasRightForOperati
是否可以不初始化类的所有字段,而直接创建类路径变量? 我知道我可以使用 POST 请求,但在本例中我需要 GET 请求。 我想要这个@GetMapping("/get/{classDTO}") pub
我正在使用 spring 框架开发一个 REST WebApp,现在我想知道接收数据的最佳实践。最好用 @RequestParam 检索它们或@PathVariable ?显然我有兴趣接收简单的数据,
我有以下 API 需要测试。没有找到将字符串数组传递给请求者的解决方案。尝试使用逗号分隔值、[] 中的值等。 @RequestMapping(value = "/v10/{user}/alerts/a
我是 Spring MVC 的新手。我的问题是 @PathVariable 导致 404“请求的资源 () 不可用”。 例如,这适用于 URL http://localhost:8080/Spring
我有一个看起来像这样的 Controller @RequestMapping(value = "/start/{params}", method = GET, produces = { APPLICA
我在将 thymleaf 形式的值映射到 Spring Controller 中的路径变量时遇到问题。 索引文件中的表单:
我有一个可以很好地处理其他请求映射的 Controller ,但我在使用 @PathVariable 注释时遇到了困难。 在 this example (请参阅“URI 模板模式”)它有以下示例: @
假设我有一个 Controller : @Controller public class SomeController { @RequestMapping(value = "{id}/obje
我是一名优秀的程序员,十分优秀!