使用 Jersey(JAX-RS)、mySQL 和 Eclipse 开发 Java Web 服务
我已使用 Netbeans 教程从 MySQL 数据库成功创建了 Web 服务。但是,我想使用 Eclipse IDE 开发类似的 Web 服务。为什么选择 Eclipse IDE?有两个原因:
1)这是因为我使用的是Tomcat 7.0和JEE6。不幸的是,NetBeans 7.0.1 在使用“从数据库创建 Web 服务...”向导时实现了 Facade 设计模式,并且没有适用于 Tomcat 7 和 EE6 的插件。
2) NetBeans 向导很有帮助,但无法帮助我了解有关使用 JDBC 桥、管理与 MySQL DB 的连接以及创建访问数据库的服务的详细信息。此外,我想为我的服务添加授权,以便只有注册用户才能访问我的网络服务。
I have successfully created Web Services from MySQL Database using Netbeans tutorial. However, I would like to develop similar web services using Eclipse IDE. Why Eclipse IDE? There are two reasons for that:
1) This is because i am using Tomcat 7.0 and JEE6. Unfortunately, NetBeans 7.0.1 implements Facade design pattern while using their “Create Web services from Database …” Wizard and it does not have a plugin for Tomcat 7 and EE6.
2) The NetBeans Wizard is helpful but does not help me understand details about using JDBC bridge, managing connections to MySQL DB and creating services to access the DB. Additionally, i want to add authorization for my services so that only registered users will be able to access my web services.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个非常清晰的教程用于构建 JAX-泽西岛用户指南中的 RS 服务。
There's a very clear tutorial for building JAX-RS services in the Jersey user guide.
我发现这个教程包含在 Eclipse 中使用 java 和 mysql 的 Restful Web 服务。尽管这是一个非常简单的教程,但这可能就是您正在寻找的内容。一探究竟。
http://www. techpages.org/webservice/simple-restful-web-services-using-java-and-mysql-example/2009/
I found this tutorial that contains Restful web services using java and mysql in eclipse. It might be what you were looking for though it is a very simple tutorial. Check it out.
http://www.techpages.org/webservice/simple-restful-web-services-using-java-and-mysql-example/2009/