快速、Ajaxian 和可索引 Java Web 应用程序?

发布于 2024-10-08 21:14:13 字数 183 浏览 7 评论 0原文

我正在搜索具有以下特征的 Java Web 应用程序:

  • 允许快速开发
  • 具有对 AJAX 的内置支持
  • 可通过搜索引擎索引(即输出是 HTML 而不是 JS)
  • 提供干净的 URL (example.com/path/path/file)

谢谢。

I am search for a Java web app with the following characteristics:

  • Allow Rapid Development
  • Has built-in support for AJAX
  • Indexable by search engines (i.e. the output is HTML not JS)
  • Provide clean URLs (example.com/path/path/file)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野味少女 2024-10-15 21:14:13

我最近对框架的搜索引导我Play!

快速

  • 在开发模式下,当您进行更改时,代码会自动重新编译。只需重新加载网页即可查看您的更改
  • 有用的错误消息:

alt text

AJAX

  • 包含 jQuery,因为它是 javascript 库
  • ReST easy
  • 源代码包括一个示例聊天应用程序,演示如何执行 Comet,结果是比我预期的更简单

输出

  • 模板引擎可以提供多种输出类型。默认情况下,您可以提供 html、json 和 txt 格式的模板,它将提供客户端请求的任何版本。

路由

  • 路由文件可以轻松地让你的路由看起来像你想要的那样。
  • 模板引擎包括操作,这些操作会根据您在模板中的规范自动转换为网址路由文件,因此您不必四处更新内部链接。

还有很多其他很酷的东西。到目前为止,合作非常愉快。

My recent search for a framework led me to Play!.

Rapid

  • In development mode, code is automatically recompiled when you make changes. Just reload the webpage to see your changes
  • Useful error messages:

alt text

AJAX

  • Includes jQuery as it's javascript library
  • Makes ReST easy
  • Source code includes an example Chat application demostrating how to do Comet, which turned out to be way simpler than I expected

Output

  • Templating engine can serve multiple output types. You can provide templates in html, json, and txt format by default and it will serve whichever version is requested by client.

Routing

  • Routes file makes it easy to make your routes look however you want.
  • Template engine includes actions that are automatically translated into urls according to your specifications in the routes file, so you don't have to go around updating your internal links.

Lots of other cool stuff too. So far it's been a joy to work with.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文