关于不影响服务器启动的Java Web MVC框架的任何建议

发布于 2024-09-13 09:09:06 字数 196 浏览 3 评论 0原文

我想知道是否有任何关于不增加启动开销的Java Web开发框架的建议。询问的原因是我计划部署在 Google App Engine 上,并且我不想增加服务器的冷启动时间。因此,任何配置开销最小的框架,或者可能延迟配置直到第一次调用框架的框架都会很有趣。该框架将用于后端管理页面,因此这些页面不会影响客户,但增加服务器启动时间肯定会影响客户。

谢谢
克拉斯

I'd like to know if there are any suggestions for a Java web development framework that does not add startup overhead. The reason for asking is that I'm planning to deploy on Google App Engine and I do not want to increase the cold start time for the server. So any framework with minimum configuration overhead, or possibly deferred configuration until first call to the framework would be interesting. The framework is to be used for backend administration pages so those pages do not affect customers, but increasing the server startup time certainly does.

Thanks
Klas

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

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

发布评论

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

评论(2

野心澎湃 2024-09-20 09:09:06

一个普通的 Servlet/JSP 框架应该可以完成这项工作。 POJO 作为模型对象。 Servlet 作为控制器。视图的 JSP。 JSP 是预编译的,servlet 只会根据需要实例化(假设 load-on-startup 为 false),当然 POJO 就是 POJO。

A vanilla Servlet / JSP framework should do the job. POJOs as Model objects. Servlets as Controllers. JSPs for Views. The JSPs are pre-compiled, servlets will only be instantiated on demand (assuming load-on-startup is false) and of course POJOs are POJOs.

世界等同你 2024-09-20 09:09:06

您应该查看玩!可以在 Google App Engine 上运行的框架 。

寻找更好的 Java 平台并且一直在使用 Play!过去几周。绝对是我会推荐的东西。

You should check out the Play! Framework which can run off of the Google App Engine.

I was looking for a better Java platform and have been using Play! for the past few weeks. Definitely something I would recommend.

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