0

我想只用来实现 REST 服务 - 一个非常简单的返回“人”的全名或 JSON 中的 ID。我可能会使用 JAX-RS 和 JAXB - 我不确定 tis 是否是正确的选择。我想将它与以下技术/产品及其版本一起使用:

  1. JDK 1.5
  2. Eclipse 3.5 EE
  3. 雄猫 6.0
  4. CXF 2.2.5
  5. 春天 2.5.1

我的问题是:

  1. 我可以同时使用 JDK 1.5 和 tomcat 6 吗?
  2. 我可以同时使用 Spring 2.5.1 和 JDK 1.6(如果我想升级)?
  3. CXF 2.2.5 和 Spring 2.5.1 是否可以正常工作?

我问,因为我有:

  • JDK 1.6
  • 日食 3.5 ee
  • 雄猫 6
  • CXF 2.2.5
  • 春天 2.5.1

而且我无法让他们使用最简单的 REST WS,例如:

使用 Apache CXF 和 Maven2 开发 RESTful Web 服务

但我不得不说:目前我不想使用 Maven。

4

2 回答 2

0

Does CXF 2.2.5 and Spring 2.5.1 will be working without any problems? -- I can't say as I never used that combo. But as @Skaffman said there's no reason to be using 2.5.1 you should really be on 2.5.6 which works with both Java 5,6 and Tomcat 6. As for using JAXB for your JSON rpresentations I would look at this SO post.

于 2009-11-24T16:50:25.847 回答
0

简而言之 :

  1. 是的
  2. 是的
  3. 没用过,应该没问题

注意:您正在谈论 JSON 和 CXF / JAXB。CXF 和 JAXB 都面向 XML,而不是面向 JSON。我什至不知道它们是否可以用来生成 JSON。如果你想要一个简单的 JSON 服务,CXF 和 JAXB 可能是矫枉过正......

于 2009-11-24T14:36:45.273 回答