gpt4 book ai didi

java - PathVariable 根本不起作用

转载 作者:搜寻专家 更新时间:2023-10-31 20:19:50 25 4
gpt4 key购买 nike

出于某种原因,我的@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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com