James Raitsev
James Raitsev

Reputation: 96421

JSP editor for eclipse, does it exist?

I noticed that my Eclipse does not include JSP Editor. Does standard JSP editor exist for Eclipse and if so, where can one download it from?

enter image description here

Upvotes: 8

Views: 58181

Answers (6)

user3220701
user3220701

Reputation: 1

To install from within IDE for newer Eclipse clients:

Help->Eclipse Marketplace

Search for "Eclipse Java EE Developer Tools". Install.

Upvotes: 0

Fangming
Fangming

Reputation: 25261

Go to help -> Install New Software and install webtool.

And for whomever that still not seeing the editor, set JSP editor to be the default editor for JSP files in this way

enter image description here

Upvotes: 3

Rajeev Jayaswal
Rajeev Jayaswal

Reputation: 1501

Go To Preference->General->Editors->File Associations Check editor for *.jsp type. If it's not present, add one. If it's Class file viewer, then remove it. Worked for me.

Upvotes: 0

Growling Flea
Growling Flea

Reputation: 129

Having the same problem, I researched this and I found many solutions. After installing the Web Tool PLug-Ins, I was able to get the .jsp editor to work. Its important to know that you must close your .jsp files then reopen it, or you may be convinced that the solution didn't work. You can confirm that the Web Tool Install worked if you go to the following:

Window -> Preferences In the list of options, you will see General. Expand that menu. Expand the "Editors" menu Click on the option "File Assocations" There will be a "file type" (I'm using Keleper) with a list of different file types. In this list, select .jsp. In this list you should see a list of editors. Select JSP editor. Then click OK.

This is something I discovered when trying to get mine to work.

Upvotes: 2

Byorn
Byorn

Reputation: 721

I had this same problem!

I resolved it by switching my eclipse perspective to JAVA EE perspective.

Upvotes: 6

skaffman
skaffman

Reputation: 403501

The JavaEE version of Eclipse has full JSP support. The standard java development version doesn't.

Alternatively, you should be able to install the WebTools plugin(s) into an existing Eclipse, that should give you JSP support also.

Upvotes: 20

Related Questions