It's not a secret anymore!
The moose likes JSP and the fly likes Can you tell me the difference of these output streams in Jsp? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Can you tell me the difference of these output streams in Jsp?" Watch "Can you tell me the difference of these output streams in Jsp?" New topic
Author

Can you tell me the difference of these output streams in Jsp?

Alexander Sales
Ranch Hand

Joined: Feb 21, 2011
Posts: 89

whats the difference in using these different tags or scriptlets when printing Strings in jsp?
ex: String helloWorld = "Hello World";


OCPJP 6, OCEWCD Java EE 6
Vijitha Kumara
Bartender

Joined: Mar 24, 2008
Posts: 3670

Difference(or the rule you MUST remember) is that you should not use scriptlets or scriptlet expressions in JSPs at all. Use EL with JSTL instead (as you've done).


SCJP 5 | SCWCD 5
[How to ask questions] [Twitter]
Alexander Sales
Ranch Hand

Joined: Feb 21, 2011
Posts: 89

Is it really prohibited to use scriptlets? aren't there any times that we have no other choice but to use a scriptlet?
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56229
    
  13

Alexander Sales wrote:Is it really prohibited to use scriptlets? aren't there any times that we have no other choice but to use a scriptlet?

Scriptlets are never necessary, and should never be used in modern JSPs. They have been discredited for almost 10 years now and using them is simply irresponsible at this point.

If there's something that you are doing in your JSP that cannot be done with modern techniques, it's a huge red flag that you are trying to do something that should not be done in a JSP at all, but likely in the page controller.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Alexander Sales
Ranch Hand

Joined: Feb 21, 2011
Posts: 89

thanks sir bear, but it is a 'nice to have' in SCWCD right?
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56229
    
  13

The SCWCD is not the real world.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Can you tell me the difference of these output streams in Jsp?
 
Similar Threads
simplest singleton
i dont understand the language
c:forEach is not working
jstl miliseconds to Date
${} vs %{} vs #{}?