Java Doc for TurbineVelocityService.java in  » Web-Framework » TURBINE » org » apache » turbine » services » velocity » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Framework » TURBINE » org.apache.turbine.services.velocity 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.turbine.services.template.BaseTemplateEngineService
   org.apache.turbine.services.velocity.TurbineVelocityService

TurbineVelocityService
public class TurbineVelocityService extends BaseTemplateEngineService implements VelocityService,MethodExceptionEventHandler(Code)
This is a Service that can process Velocity templates from within a Turbine Screen. It is used in conjunction with the templating service as a Templating Engine for templates ending in "vm". It registers itself as translation engine with the template service and gets accessed from there. After configuring it in your properties, it should never be necessary to call methods from this service directly. Here's an example of how you might use it from a screen:
Context context = TurbineVelocity.getContext(data);
context.put("message", "Hello from Turbine!");
String results = TurbineVelocity.handleRequest(context,"helloWorld.vm");
data.getPage().getBody().addElement(results);

author:
   Dave Bryson
author:
   Rafal Krzewski
author:
   Jason van Zyl
author:
   Sean Legassick
author:
   Daniel Rall
author:
   Henning P. Schmiedehausen
version:
   $Id: TurbineVelocityService.java 552336 2007-07-01 16:33:47Z tv $




Method Summary
public  ExtendedPropertiescreateVelocityProperties(Configuration conf)
     This method generates the Extended Properties object necessary for the initialization of Velocity.
public  ContextgetContext()
     Create a Context object that also contains the globalContext.
public  ContextgetContext(RunData data)
     Create a Context from the RunData object.
public  ContextgetNewContext()
     This method returns a new, empty Context object.
public  StringhandleRequest(Context context, String filename)
     Process the request and fill in the template with the values you set in the Context.
Parameters:
  context - The populated context.
Parameters:
  filename - The file name of the template.
public  voidhandleRequest(Context context, String filename, OutputStream output)
     Process the request and fill in the template with the values you set in the Context.
public  voidhandleRequest(Context context, String filename, Writer writer)
     Process the request and fill in the template with the values you set in the Context.
public  voidinit()
     Load all configured components and initialize them.
public  voidinit(ServletConfig config)
     Inits the service using servlet parameters to obtain path to the configuration file.
public  ObjectmethodException(Class clazz, String method, Exception e)
     MethodException Event Cartridge handler for Velocity.
public  voidrequestFinished(Context context)
     Performs post-request actions (releases context tools back to the object pool).
public  booleantemplateExists(String template)
     Find out if a given template exists.



Method Detail
createVelocityProperties
public ExtendedProperties createVelocityProperties(Configuration conf) throws Exception(Code)
This method generates the Extended Properties object necessary for the initialization of Velocity. It also converts the various resource loader pathes into webapp relative pathes. It also
Parameters:
  conf - The Velocity Service configuration An ExtendedProperties Object for Velocity
throws:
  Exception - If a problem occured while converting the properties.



getContext
public Context getContext()(Code)
Create a Context object that also contains the globalContext. A Context object.



getContext
public Context getContext(RunData data)(Code)
Create a Context from the RunData object. Adds a pointer to the RunData object to the VelocityContext so that RunData is available in the templates.
Parameters:
  data - The Turbine RunData object. A clone of the WebContext needed by Velocity.



getNewContext
public Context getNewContext()(Code)
This method returns a new, empty Context object. A Context Object.



handleRequest
public String handleRequest(Context context, String filename) throws TurbineException(Code)
Process the request and fill in the template with the values you set in the Context.
Parameters:
  context - The populated context.
Parameters:
  filename - The file name of the template. The process template as a String.
throws:
  TurbineException - Any exception trown while processing will bewrapped into a TurbineException and rethrown.



handleRequest
public void handleRequest(Context context, String filename, OutputStream output) throws TurbineException(Code)
Process the request and fill in the template with the values you set in the Context.
Parameters:
  context - A Context.
Parameters:
  filename - A String with the filename of the template.
Parameters:
  output - A OutputStream where we will write the process template asa String.
throws:
  TurbineException - Any exception trown while processing will bewrapped into a TurbineException and rethrown.



handleRequest
public void handleRequest(Context context, String filename, Writer writer) throws TurbineException(Code)
Process the request and fill in the template with the values you set in the Context.
Parameters:
  context - A Context.
Parameters:
  filename - A String with the filename of the template.
Parameters:
  writer - A Writer where we will write the process template asa String.
throws:
  TurbineException - Any exception trown while processing will bewrapped into a TurbineException and rethrown.



init
public void init() throws InitializationException(Code)
Load all configured components and initialize them. This is a zero parameter variant which queries the Turbine Servlet for its config.
throws:
  InitializationException - Something went wrong in the initstage



init
public void init(ServletConfig config) throws InitializationException(Code)
Inits the service using servlet parameters to obtain path to the configuration file.
Parameters:
  config - The ServletConfiguration from Turbine
throws:
  InitializationException - Something went wrong when starting up.



methodException
public Object methodException(Class clazz, String method, Exception e) throws Exception(Code)
MethodException Event Cartridge handler for Velocity. It logs an execption thrown by the velocity processing on error level into the log file
Parameters:
  clazz - The class that threw the exception
Parameters:
  method - The Method name that threw the exception
Parameters:
  e - The exception that would've been thrown A valid value to be used as Return value
throws:
  Exception - We threw the exception further up



requestFinished
public void requestFinished(Context context)(Code)
Performs post-request actions (releases context tools back to the object pool).
Parameters:
  context - a Velocity Context



templateExists
public boolean templateExists(String template)(Code)
Find out if a given template exists. Velocity will do its own searching to determine whether a template exists or not.
Parameters:
  template - String template to search for True if the template can be loaded by Velocity



Methods inherited from org.apache.turbine.services.template.BaseTemplateEngineService
public String[] getAssociatedFileExtensions()(Code)(Java Doc)
public Hashtable getTemplateEngineServiceConfiguration()(Code)(Java Doc)
protected void initConfiguration(String defaultExt)(Code)(Java Doc)
public void registerConfiguration(String defaultExt)(Code)(Java Doc)
abstract public boolean templateExists(String template)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.