gpt4 book ai didi

java - Camel 和 Google App Engine 没有 Spring?

转载 作者:太空宇宙 更新时间:2023-11-04 07:49:59 25 4
gpt4 key购买 nike

所以我正在温习 Camel-GAE 组件,我发现的所有教程/代码示例似乎都表明您必须使用 Spring DSL (XML) 才能让 Camel 在 GAE 上运行。

这是因为 Camel-GAE 依赖于 Camel-Servlet,而我在 web.xml 中找到的用于配置 CamelServlet 的唯一代码示例涉及:

<web-app>
<servlet>
<servlet-name>CamelServlet</servlet-name>
<display-name>Camel Http Transport Servlet</display-name>
<servlet-class>org.apache.camel.component.servlet.CamelHttpTransportServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>appctx.xml</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>CamelServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
</web-app>

我真的不是 Spring 的忠实粉丝,并且更喜欢使用 GIN 或 Guice 之类的东西来完成我所有的 DI。 有没有办法在不使用 Spring 的情况下创建 Camel Servlet 并定义其 CamelContext 提前致谢。

更新 - 在 GAE 上使用 JNDI 注册表时出现的错误:

java.lang.NoClassDefFoundError: javax.naming.InitialContext is a restricted class. Please see the Google  App Engine developer's guide for more details.
at com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:51)
at org.apache.camel.impl.JndiRegistry.createContext(JndiRegistry.java:103)
at org.apache.camel.impl.JndiRegistry.getContext(JndiRegistry.java:92)
at org.apache.camel.impl.JndiRegistry.lookup(JndiRegistry.java:65)
at org.apache.camel.impl.JndiRegistry.lookup(JndiRegistry.java:47)
at org.apache.camel.impl.PropertyPlaceholderDelegateRegistry.lookup(PropertyPlaceholderDelegateRegistry.java:62)
at org.apache.camel.impl.DefaultCamelContext.doStartCamel(DefaultCamelContext.java:1557)
at org.apache.camel.impl.DefaultCamelContext.doStart(DefaultCamelContext.java:1444)
at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:60)
at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:1412)
at com.ourapp.server.servlets.CamelServlet.doGet(Unknown Source)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

最佳答案

web.xml 文件不需要使用 Spring。因此,那里没有依赖性要求。我只是认为创建camel-gae 时,示例和教程是Web 应用程序,因此使用Spring 上下文监听器引导Camel 更容易。不再需要:http://camel.apache.org/servlet-tomcat-no-spring-example.html

我认为我们应该调查一下这个问题,我记录了一张票:https://issues.apache.org/jira/browse/CAMEL-6030

当我升级camel-gae以使用较新的GAE版本时,我注意到它的spring依赖性。

关于java - Camel 和 Google App Engine 没有 Spring?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14661137/

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