Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSF Eclipse Designer

Tags:

java

eclipse

jsf

Is there any Eclipse plugin that will allow me to do a Visual Studio like drag-and-drop for JSF components on a web page? So I won't have to write <f:input...> and the tool would just create this code for me?

If not eclipse, are there are other options?

(I do not plan to actually use something like this but I do need to know).

like image 968
Nir Levy Avatar asked Feb 27 '23 20:02

Nir Levy


1 Answers

Mat be the JSF page Designer (or now "Web Page Editor") could do what you want?
It is illustrated in this myeclipse page

alt text
(source: myeclipseide.com)

As mentioned in this thread, you can make the Visual Page Designer the default editor for JSP pages

The JSF Tools Project-contributed Web Page Editor is NOT registered as the default editor for JSP files.
You can make the WPE the default editor for JSP files by following these steps:

  • Navigate to "Window" -> "Preferences..." -> "General" -> "Editors" -> "File Associations"
  • In the "File types" section, select "*.jsp"
  • In the "Associated editors" section, select "Web Page Editor"
  • Select the "Default" button
like image 87
VonC Avatar answered Mar 07 '23 17:03

VonC