Programming Tutorials

(追記) (追記ここまで)

Declarations in JSP

By: Sathya Narayana in JSP Tutorials on 2010年10月24日 [フレーム]

The following syntax allows you to declare variables and methods for the page. These are placed in the generated servlet outside the _jspService() method; in other words, variables declared here will be instance variables of the servlet. Declarations don't produce any output.

This is an example of declaring a variable:

<%! String message; %>

The following code declares a variable and initializes it:

<%! String message = "variable declarared"; %>

You can define a method for use on the global page like so:

<%! public String showMessage() { return message; } %>

Declaration tags are mainly used in conjunction with scriptlets.




(追記) (追記ここまで)


Add Comment

JavaScript must be enabled for certain features to work
* Required information
1000

Comments

No comments yet. Be the first!
(追記) (追記ここまで)
(追記) (追記ここまで)

AltStyle によって変換されたページ (->オリジナル) /