0

我按照这个(第 7 段)教程使用 jersey 创建了一个 Rest 服务。但是最后我有点失望,因为它不是我想要的。

我的想法是创建一个带有 jersey 的 java 服务器,客户端可以向它发出 post 请求,服务器可以将数据保存在 MySQL 数据库中。

在教程中,我可能会看到如何发出发布请求?即便如此,我也使用了一些 html 和 4 个不同的 java 类,而没有任何解释。在 php 中,同样的事情不到 40 行代码,一切都变得有意义。

我不知道从哪里开始,因为每个人都建议我阅读本教程以了解我需要的内容。但我不明白为什么,因为我不明白它的目的。

你知道我可以看的任何教程,或者在这里为我指出正确的方向吗?我以前从未使用过 java 开发过,也没有使用过 tomcat,所以一切对我来说似乎都很新。我习惯了 php 和 apache。

4

1 回答 1

0

The tutorial you have mentioned focus on creating RESTful Webservices with Java. It aims at distributed systems, where a client can make requests to a server. I think the tutorial is very helpful for that matter.

On the other hand, you seem to be searching for a tutorial that helps you creating a web application that can save/retrieve data to/from a database. You can find one, for example, in http://zetcode.com/tutorials/jeetutorials/mysqldatabase/

Then, for web clients, you have different alternatives, such as GWT or JSF. Also, for the persistence layer you might want to check Hibernate or JPA.

Relatively to Tomcat, it implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run. In short, Tomcat is the place where you deploy and run your Java web application; like you deploy a PHP application in Apache (with PHP installed).

于 2013-04-29T09:26:30.410 回答