Groovy Server Pages
From Seo Wiki - Search Engine Optimization and Programming Languages
| This article or section has multiple issues. Please help improve the article or discuss these issues on the talk page.
|
Groovy Server Pages (GSP) is like JSP a presentation language for web application. GSP allows static and dynamic content to be mixed in the same document. The result is a dynamically generate HTML, XML or other types of documents in response to a Web client request.
An example of GSP code:
<html> <head></head> <body> <%def string = 'hello world'%> <h1>${string}</h1> </body> </html>
[edit] See also
Categories: Articles lacking reliable references from January 2009 | Articles needing cleanup from January 2009 | Wikipedia introduction cleanup from January 2009 | Wikipedia articles needing clarification from January 2009 | Articles to be expanded from January 2009 | All articles to be expanded | Java programming language family