关于 ASP.NET MVC 到 Java 迁移的建议?
我是一名 ASP.NET 开发人员,正在尝试学习 Java Web 开发。我想将一个小型 ASP.NET MVC 站点迁移到 Java。我有 ASP.NET 代码和 SQL Server 数据库。我对 Netbeans 和 Eclipse 很满意。我了解 servlet 和 JSP 的基础知识。我想知道使用 Web 框架而不是直接使用 JSP/servlet 是否有意义。
我不知道该使用什么 Java Web 框架。我更喜欢基于 MVC 的框架,可以基于现有数据库模式快速生成数据层,并且具有简单的学习曲线。我看过 Struts2 和 JSF。两者看起来都有点复杂,但如果我花更多时间在上面,也许它们会更平易近人......?
我还应该探索其他框架吗?有什么建议吗?
I'm an ASP.NET developer trying to learn Java web dev. I would like to migrate a small ASP.NET MVC site to Java. I have the ASP.NET code and the SQL Server database. I'm comfortable with Netbeans and Eclipse. I know the basics of servlets and JSPs. I'm wondering whether it would make sense to use a web framework instead of using JSP/servlets directly.
I'm stuck at what Java web framework to use. I would prefer a framework that's MVC based, can generate a data layer quickly based on an existing database schema and has an easy learning curve. I've peeked at Struts2 and JSF. Both seem a bit complicated but if I spend more time on it, perhaps they be more approachable...?
Are there other frameworks I should explore? Any recommendations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是 Spring Framework 的粉丝,所以我推荐 Spring MVC。我警告你——这并不容易。您可以重用 JSP 作为视图层,然后切换到 Freemarker/Velocity。也许稍后会进行一些休眠。 Spring 有一个很酷的 Eclipse 插件包,称为 Spring Tool Suite - 使开发更容易。包含示例的页面: http://www.springbyexample.org/ :)
I'm kinda Spring Framework fan, so I would recommend Spring MVC. I warn you - it isnt easy. You could reuse JSP as view layer, and switch later to Freemarker/Velocity. And maybe some Hibernate later. There is cool plugin pack for Eclipse from Spring, called Spring Tool Suite - makes development easier. And page with examples: http://www.springbyexample.org/ :)