org.apache.turbine.services

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 
org.apache.turbine.services
Contains the Service framework for Turbine.

Services are singletons that have pluggable implementation and can participate in Turbine startup and shutdown.

What is a service?

  • Is a singleton - there is only one instance of it in the system i.e. memory or connections are allocated once only, and the internal state is common to all requesting clients.
  • Has pluggable implementation - you can use your own implementation if you need, just change an entry in TurbineResources.properties, and there you go.
  • Can access ServletConfig at system startup time to process relative paths and the like.
  • Can access RunData on the first Turbine doGet execution to get URL we're running under and the like.
  • Can initialize itself (allocate memory, make connctions) just before the client requests it for the first time. Services that are never used by the application will not allocate resources.
  • Can execute some action upon system shutdown e.g. close the opened connections.

The life cycle of a Service

A Service (or any other Initable, if we had any) is not supposed to do much in it's constructor. Especialy it should not allocate any costly resources like large memory structures, DB or network connections and the like. It may well happen that the Service is sitting in the config file, but the application does not need it, so allocating all resources at system startup might be a loss.

Early initialization is similar to the constructor. It is used to pass some information that the Service will need in it's future operation. UniqueId Service uses the HttpRequest object from the first Turbine invocation to determine URL this instance is runnign under, to generate instance ID. Early initialization method should process the configuration, store some values, but NOT allocate resources. There is still a chance that the Service will not be used. If the Service is ready to work (i.e. does not need any more objects being sent to it), and does not to allocate any resources during late initialization, the internal state can be changed so that getInit() returns true.

Late initialization happens when the Service is requested by the application for the first time. It should allocate any resources needed and chnge the state so that getInit() returns true. If getInit() returns false after init() is executed, the Service has malfunctioned.

After late initialization, the Service is ready to perform actions on behalf of the application.

When the Service is no longer needed (this usually happens when system is shutting down), the shutdown() method is called. shutdown() should deallocate all resources. If any error conditions occur they are ignored.

Initialization of services outside of the Turbine servlet

In the case where specific Turbine services are desired outside the context of the Turbine servlet, a Turbine JAR file can be used in conjunction with a properly configured TurbineResources.properties file to initialize a specific set of services to use in your application. The following sample code performs such initialization:

String webAppRoot = "/var/httpd/webapps";
String trProps = "/var/httpd/TurbineResources.properties";
try
{
    TurbineConfig cfg = new TurbineConfig(webAppRoot, trProps);
    cfg.init();
}
catch (Exception e)
{
    // If Turine fails to initialize, no logging service will be available.
    String msg = "Failed to initialize Turbine: " + e.getMessage();
    // Write directly to stderr to preserve the full stack trace.
    System.err.println(msg);
    e.printStackTrace();
    throw new Error(msg);
}

$Id: package.html 534527 2007-05-02 16:10:59Z tv $

Java Source File NameTypeComment
BaseInitable.javaClass This class provides a generic implementation of Initable.
BaseInitableBroker.javaClass A generic implementation of InitableBroker. Functionality provided by the broker includes:
  • Maintaining single instance of each Initable in the system.
  • Early initialization of Initables during system startup.
  • Late initialization of Initables before they are used.
  • Providing instances of Initables to requesting parties.
  • Maintaining dependencies between Initables during early initalization phases, including circular dependencies detection.

author:
   Kevin Burton
author:
   Rafal Krzewski
author:
   Henning P.
BaseService.javaClass This class is a generic implementation of Service.
author:
   Kevin Burton
author:
   Rafal Krzewski
author:
   Henning P.
BaseServiceBroker.javaClass A generic implementation of a ServiceBroker which provides:
  • Maintaining service name to class name mapping, allowing plugable service implementations.
  • Providing Services with a configuration based on system wide configuration mechanism.

author:
   Kevin Burton
author:
   Rafal Krzewski
author:
   Daniel Rall
author:
   Jason van Zyl
author:
   Martin Poeschl
author:
   Henning P.
BaseUnicastRemoteService.javaClass A base implementation of an java.rmi.server.UnicastRemoteObject as a Turbine org.apache.turbine.services.Service .
Initable.javaInterface Classes that implement this interface need initialization before they can work.
InitableBroker.javaInterface Classes that implement this interface can act as a broker for Initable classes.
InitializationException.javaClass Thrown by Initable class in case of initialization problems.
InstantiationException.javaClass Thrown by InitableBroker and ServiceBroker classes to indicate problems with instatiation of requested objects.
Service.javaInterface Services are Initables that have a name, and a set of properties.
ServiceBroker.javaInterface Classes that implement this interface can act as a broker for Service classes. Functionality that ServiceBroker provides in addition to InitableBroker functionality includes:
  • Maintaining service name to class name mapping, allowing plugable service implementations.
  • Providing Services with Properties based on a system wide configuration mechanism.

author:
   Kevin Burton
author:
   Rafal Krzewski
author:
   Daniel Rall
author:
   Henning P.
ServiceManager.javaInterface Classes that implement this interface can act as a manager for Service classes. Functionality that ServiceManager provides in addition to ServiceBroker functionality includes configuration of the manager.
author:
   Ilkka Priha
author:
   Martin Poeschl
author:
   Henning P.
TurbineBaseService.javaClass

This class provides a Service implementation that Services used in Turbine are required to extend.

TurbineServices.javaClass This is a singleton utility class that acts as a Services broker.
author:
   Greg Ritter
author:
   Brett McLaughlin
author:
   Kevin Burton
author:
   Rafal Krzewski
author:
   Jon S.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.