I would like to display syntax errors in JSP scriptlets in Eclipse.

Asked 2 years ago, Updated 2 years ago, 100 views

How do I view JSP scriptlet compilation errors in Eclipse?
The version is Pleiades in Eclipse 4.4.
"I chose ""Full Edition of Ultimate"" from the following site."
http://mergedoc.osdn.jp/index.html#/pleiades_distros4.4.html

If you misspell the variable name in the scriptlet, as shown in the code below,
My Eclipse doesn't show "error".

<%
String sample = "test";
System.out.println(sample);
%>

"Therefore, I always repeat the steps ""Screen display → error notice → correction."""
However, I think this method is inefficient.

eclipse jsp

2022-09-30 12:04

1 Answers

Isn't it just that you didn't open the file in the JSP editor (such as the editor for JSP)?

Right-click the JSP file and select Open from Application > JSP Editor, but does the result remain the same?


2022-09-30 12:04

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.