不明白如何为后端网站构建基于 GWT 的应用程序
我需要一个在网络上得到很好引用(SEO)的网站,并且无需 JS 也可以访问。但我还需要对该网站进行管理(我不想在我的情况下使用 CMS),所以我想在 GWT 中执行我的管理应用程序(我没有 GWT 经验)。为了帮助我,我将使用 Spring 框架。
我不明白的是事情是如何在服务器级别发生的(我从未开发过 JAVA APPLET)...我是否只有一个项目(Spring)来接收/发送我的网站的 http 请求和 这也将让人们使用 GWT 应用程序?
非 js 浏览器是否始终能够访问我的网站(我担心 GWT 应用程序会暗示我的网站也需要 nedd js)?
抱歉,如果我不清楚,也许您可以理解我的问题并向我推荐一些东西? tkx,
I need a website well referenced on the web (SEO), and also accessible without JS. But I also need an administration for this website (I do not want to use a CMS for my case), so I want to do my admin application in GWT (I do not have experience in GWT). In order to help me, I wiil use the Spring Framework.
What I do not understand is how things happen at the level server (I have never developped a JAVA APPLET)...Do I have just one project (Spring) that will receive/send http requests for my website and that will also let people using the GWT app ?
Will non-js browser be always able to go to my website (I am afraid that the GWT app will imply that my website will also nedd js) ?
Sorry if I am not clear, maybe you can understand my problem and recommend me something ?
Tkx,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,GWT 大量使用 JavaScript,所以如果这是您的要求:最好考虑一下其他框架,例如 Spring。可能看看 https://stackoverflow.com/search?q=java+web+framework这提出了有关该主题的数十个问题。
此外,不要将Applet 与服务器端应用程序混合在一起,它们纯粹是客户端应用程序(现在很少使用)。
Yes, GWT heavily uses JavaScript, so if this is a requirement for you: rather have a look for another framework like Spring for instance. Probably have a look at https://stackoverflow.com/search?q=java+web+framework which brings up tens of questions regarding this topic.
Furthermore, don't mix Applets with server-side application, those are purely client-side applications (and rarely used nowadays).