Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I learn Java before JSP?

Tags:

java

jsp

I have the opportunity for a new job in which I'd be moving from PHP to JSP. I've done a little java in the past but am just wondering if I should revise my java knowledge before attempting to learn JSP?

like image 665
iamjonesy Avatar asked Jan 21 '23 15:01

iamjonesy


1 Answers

If you are going to write business logic too (not only views in JSP), then knowing the Java language is required.

On the other hand, if somebody else codes all the business logic for you, and all you are left with is objects injected into your JSP, you might get away with just using JSTL alone to control the formatting of your views. (i.e, no scriptlets in your views)

like image 145
bakkal Avatar answered Jan 24 '23 04:01

bakkal