Groovy Server Pages

Groovy Server Pages (GSP) — язык со схожим синтаксисом JSP[1]. Рассчитан для создания веб-приложений. Используется в веб-фреймворке Grails[2], для которого является базовой технологией[3]. GSP позволяет смешивать статический и динамический контент на одной странице. В качестве ответа на запрос клиента генерируется страницы в разметке HTML, XML.

Пример GSP кода:

 <html>
   <head></head>
   <body>
     <%def string = 'hello world'%>
     <h1>${string}</h1>
   </body>
 </html>

См. также

Примечания

  1. Kent Inge Fagerland Simonsen, Florian Mantz, Alessandro Rossini, Adrian Rutle. Groovy and Grails Meet Eclipse Modelling Framework // Proceedings of NIK 2010. — 2009. — Ноябрь. С. 34-43.
  2. Dave Klein, Ben Klein. Grails 2: A Quick-Start Guide. — Pragmatic Bookshelf, 2013-12-12. — 305 с. — ISBN 978-1-68050-362-3.
  3. Glen Smith, Peter Ledbrook. Grails in Action. — Manning, 2009. — 524 с. — ISBN 978-1-933988-93-1.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.