3

我最近开始使用 JSF 2.0 开发一个 Web 应用程序,但是我是 Web 开发的新手,而且该领域(即使仅限于 JVM 解决方案)结果非常广泛......可供选择的技术数量有点压倒性.

我的担忧/问题是,混合/集成以下技术是否可行/建议?

  • CCS3 + HTML5 + JavaScript(特别是使用 Twitter Bootstrap 框架)
  • JSF 2.0
  • 小面

如果是这样,当与网页设计师一起工作时,JSF 2.0 将使我变得更加困难的事情是什么。例如,当将网页设计集成到应用程序中时,我想我必须做一些修改:插入 JSF 标记和 EL 表达式,以某种特殊方式处理 JavaScript(?),处理 HTML 标记的不兼容性(?)等.

以下问题很有帮助,但并未阐明所有问题:

提前致谢

4

1 回答 1

5

You seem to not fully understand the point of JSF. JSF is basically just a HTML/CSS/JS code producer. It really doesn't matter to JSF what version the produced code is. JSF doesn't run in webbrowser or something. It runs in webserver. All the webbrowser retrieves is just the JSF-produced HTML/CSS/JS code. You just have to make sure that that HTML/CSS/JS code is understood by the particular webbrowser.

于 2012-04-07T01:27:29.707 回答