Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

What's the deal with JSP?

18 views
Skip to first unread message

e.d.pro...@gmail.com

unread,
Dec 29, 2020, 10:27:38 AM12/29/20
to
So it stands for Java Server Pages, gets compiled into a .java file, seems like Java should be the primary language, but Eclipse recognizes html as the primary language and Java code has to be embedded with <% %> which people don't recommend. Assuming there's no good frameworks available like Spring or Angular, what's the best way to make jsp look like clean code?

Arne Vajhøj

unread,
Dec 29, 2020, 1:49:08 PM12/29/20
to
A JSP page should consist of either a mix of markup and Java or
preferably only markup. If it was all Java then you should use
a servlet instead. So I think it makes sense for Eclipse to color
code it as HTML and not as Java.

<% %> are indeed considered primitive / old fashioned / bad style.
There are several techniques that can be used to avoid that
mix and get more clean code. Most important should be
JSTL and bean classes.

Any good JSP tutorial or book (which likely would be 15+ years old!)
would describe those.

I have written something:
https://www.vajhoej.dk/arne/articles/jeetrick.html
which you may consider useful - or not.

Arne



e.d.pro...@gmail.com

unread,
Dec 29, 2020, 4:59:39 PM12/29/20
to
> A JSP page should consist of either a mix of markup and Java or
> preferably only markup. If it was all Java then you should use
> a servlet instead. So I think it makes sense for Eclipse to color
> code it as HTML and not as Java.
>
It looked confusing with the default being html as I saw a class like myjsp.jsp got converted when it compiled to generate something like a myjsp_jsp.java.

> <% %> are indeed considered primitive / old fashioned / bad style.
> There are several techniques that can be used to avoid that
> mix and get more clean code. Most important should be
> JSTL and bean classes.
>
We have a lot of <% %> like the jsp files were written by a Java programmer who just wanted to make the entire jsp files into Java code with the html tags just stuck in between.
<% if (condition) { %>
<tag>value</tag>
<% } %>

I did see the JSTL looks cleaner, though converting everything will take awhile. Trying to sort out what goes in front end, back end if this should be any sort of MVC since it's currently html, jsp, java, javascript all in one file. I did see how to make a servlet, or tag files, to separate things out. Just trying to clear up what should go where.

> Any good JSP tutorial or book (which likely would be 15+ years old!)
> would describe those.
>
> I have written something:
> https://www.vajhoej.dk/arne/articles/jeetrick.html
> which you may consider useful - or not.
>
> Arne

This does look very useful, thanks!

Arne Vajhøj

unread,
Dec 29, 2020, 10:44:03 PM12/29/20
to
On 12/29/2020 4:59 PM, e.d.pro...@gmail.com wrote:
>> A JSP page should consist of either a mix of markup and Java or
>> preferably only markup. If it was all Java then you should use
>> a servlet instead. So I think it makes sense for Eclipse to color
>> code it as HTML and not as Java.
>>
> It looked confusing with the default being html as I saw a class like myjsp.jsp got converted when it compiled to generate something like a myjsp_jsp.java.

From an application perspective you should just look at
the JSP and what it does - how it does it should not
matter unless you are developing a web container. (*)

But yes typical the .jsp get converted into a .java that get compiled
into a .class that get loaded and JIT compiled to native code by the
JVM.

*) Actually looking at the generated .java can occasionally be useful
for troubleshooting certain compile errors.

>> <% %> are indeed considered primitive / old fashioned / bad style.
>> There are several techniques that can be used to avoid that
>> mix and get more clean code. Most important should be
>> JSTL and bean classes.
>>
> We have a lot of <% %> like the jsp files were written by a Java programmer who just wanted to make the entire jsp files into Java code with the html tags just stuck in between.
> <% if (condition) { %>
> <tag>value</tag>
> <% } %>

It is bad style.

It was also common style 20 years ago.

:-)

> I did see the JSTL looks cleaner, though converting everything will take awhile. Trying to sort out what goes in front end, back end if this should be any sort of MVC since it's currently html, jsp, java, javascript all in one file. I did see how to make a servlet, or tag files, to separate things out. Just trying to clear up what should go where.

Some best practices, JSTL etc. improved JSP a lot in the early 00'es.

Of course with JSF 2.0 in 2009 and facelets becoming default view
technology, then JSP was no longer "it".

Arne
0 new messages