Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question

2 Answers

up vote 3 down vote accepted

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

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
share|improve this answer
I have used MyEclipse for some years. It is nice to get things done quickly, but it tends to creak quite a bit when you reach out in the corners - especially when using Pulse. It may be better these days :) – Thorbjørn Ravn Andersen Dec 28 '09 at 22:11
Thank you, just what I was looking for and it was right there under my nose :-). Do you know if i can use it with richfaces? can i add my own custom UIComponents to the Palette? – Nir Levy Dec 29 '09 at 10:59
@Nir Levy: I am not familiar enough with that plugin to know about its customization capabilities. – VonC Dec 29 '09 at 11:18

The best for you is WPE in Eclipse. Read this http://www.eclipse.org/webtools/jsf/docs/tutorial/JSFTools_1_0_tutorial.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.