Where is Visual Web Editor for JavaServer Faces on Netbeans

时光总嘲笑我的痴心妄想 提交于 2019-11-26 11:32:50

问题


I\'m currently following a tutorial in a book, and it instructs to create a Java Web App with the Visual JavaServer Faces framework. The screenshot in the book shows both the JavaServer Faces framework and the extra Visual JavaServer Faces framework. I can\'t seem to find the plugin / download in the netbeans plugin page, or when I google it. Has this feature been removed?

Also this tutorial shows this screenshot:

\"enter

Have both the frameworks been integrated into one? If so, how can I access this design screen?

Thanks


回答1:


That's the UI editor of the already since ~3 years dead and abandoned Woodstock library . That library became an epic failure due to an bug which revealed when Firefox 3 was released. It turned out that the library generates non-standards compliant Javascript which broke in the newer and more standards-compliant browsers. It was a hard smack in Woodstock's face.

Since then, users were recommended to migrate to ICEfaces 1.x. There's an auto-migration tool for ICEfaces. ICEfaces in turn has a visual editor plugin for Netbeans. The visual editor has been removed from Netbeans since version 6.8. See also wiki.netbeans.org/VisualWebSupport:

VisualWebSupport

Where can I find the Visual Web Pack with Visual Editor support for web page design?

Starting from NetBeans 6.8, the Visual Web module is no longer available. No further development is planned.

Another fact is, using visual editors with code generators is strongly discouraged in the professional development world. They were often used by starters only and it produces unmaintainable and unreuseable code to a high degree. On the other hand, it makes debugging and nailing down code-level problems much harder for starters, because they don't understand any line of the generated code. It also unnecessarily gave JSF in general a negative imago.

If you're new to coding, don't drag'n'drop code, but just write code.

If you like to develop JSF on Netbeans, I recommend walking through the latest tutorials at Netbeans.org instead (using a normal code editor!). You can find them all here. With regard to learning JSF in general, start at our JSF wiki page for a Hello World and useful links.



来源:https://stackoverflow.com/questions/2631130/where-is-visual-web-editor-for-javaserver-faces-on-netbeans

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!