gpt4 book ai didi

java - 在 Google App Engine 中收到 Spring RequestMappingHandlerMapping 错误

转载 作者:行者123 更新时间:2023-11-30 10:50:59 25 4
gpt4 key购买 nike

我构建了一个简单的 Spring MVC 应用程序,它可以在我的本地机器上完美运行。然而,将其上传到 Google App Engine 后,我收到了 HTTP 500 错误。

查看日志,我收到此 INFO 消息:

org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions: Loading XML bean definitions from ServletContext resource [/WEB-INF/enterprise-servlet.xml]

这是正常的,因为我在本地运行应用程序时收到此 INFO 消息。然后 Spring 会将 url 映射到方法上,例如来 self 本地机器的日志消息:

org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.register Mapped "{[/listStaff],methods=[GET],produces=[application/json || application/xml]}" onto public java.util.List<org.andrewvincent.model.Staff> org.andrewvincent.controller.Controller.listStaffXML()

但是,当查看来自应用引擎的日志时,我收到以下错误:

org.springframework.web.context.support.XmlWebApplicationContext refresh: Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping': Invocation of init method failed; nested exception is java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "accessClassInPackage.sun.reflect.annotation")

我想这就是我收到 500 错误代码的原因,因为 url 没有映射到方法上,但我无法弄清楚为什么我不在本地时会收到此错误。

以下是我的enterprise-servlet.xml:

<beans xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">

<mvc:annotation-driven/>

<bean id="controllerBean" class="org.andrewvincent.controller.Controller"></bean>
<bean id="plainControllerBean"
class="org.andrewvincent.controller.PlainTextController"></bean>

<mvc:resources mapping="/resources/**" location="/resources/"/>

<mvc:default-servlet-handler/>
</beans>

如果有人能帮助我,我将不胜感激。

最佳答案

这是一个已知的 bug .

您使用的是 4.2.4 吗?如果是这样,您应该降级到 4.2.3。

关于java - 在 Google App Engine 中收到 Spring RequestMappingHandlerMapping 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34866362/

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