Java Doc for TransactionAwareDataSourceProxy.java in  » Search-Engine » compass-2.0 » org » apache » lucene » store » jdbc » datasource » 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 » Search Engine » compass 2.0 » org.apache.lucene.store.jdbc.datasource 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.lucene.store.jdbc.datasource.TransactionAwareDataSourceProxy

TransactionAwareDataSourceProxy
public class TransactionAwareDataSourceProxy implements DataSource(Code)
Proxy for a target DataSource, adding awareness of local managed transactions. Similar to a transactional JNDI DataSource as provided by a J2EE server.

Encapsulates both a simple transaction manager based on ThreadLocal and a DataSource that supports it. Should be used when no tranasction managers are used (like JTA or Spring) in order to get simpler support for transactions.

It is by no means aimed at replacing the usage of a proper transaction manager, but is provided for a simple implementation of transactions for org.apache.lucene.store.jdbc.JdbcDirectory (resulting in better performance), and integration with an existing DataSource code.

Wraps the created Jdbc Connection with a ConnectionProxy , which will only close the target connection if it is controlled by it.

The most outer Connection within the context of a thread, is the controlling connection. Each inner Connection that will be retrieved using this data source will return the same connection, and each call to close the connection on inner connection will be disregarded. Commiting a connection should be done only on the outer most connection.

A set of simple utilities are provided in the DataSourceUtils for simpler management of the DataSource, and special care is taken if the DataSource uses the ConnectionProxy (such is the case with this data soruce). For example, the DataSourceUtils.commitConnectionIfPossible(java.sql.Connection) and DataSourceUtils.rollbackConnectionIfPossible(java.sql.Connection) will only call commit/rollback if the Connection was created by this data source (otherwise, in a managed environment, it will be called on the actual transaction managed, or it will be using AOP).

Note, that all the code that interacts with the database within the Jdbc Store package does not commit / rollbacks the connection. It only executes it's statements, and if something goes wrong throws an exception. The responsiblity for transaction management is with the calling code, and the TransactionAwareDataSourceProxy is there to help non managed transaction management.
author:
   kimchy
See Also:   DataSourceUtils
See Also:   org.apache.lucene.store.DirectoryTemplate




Constructor Summary
public  TransactionAwareDataSourceProxy(DataSource dataSource)
     Create the data source with the given data source to wrap.

Method Summary
public  ConnectiongetConnection(String username, String password)
     Not supported.
public  ConnectiongetConnection()
     Creates or returns an alreay created connection.
public  PrintWritergetLogWriter()
    
public  intgetLoginTimeout()
    
public  DataSourcegetTargetDataSource()
     Returns the targe data source.
protected  ConnectiongetTransactionAwareConnectionProxy(Connection target, DataSource dataSource, boolean controllsConnection)
     A simple helper that return the Jdbc Connection wrapped in our proxy.
public  booleanisWrapperFor(Class iface)
    
public  voidsetLogWriter(PrintWriter out)
    
public  voidsetLoginTimeout(int seconds)
    
public  Tunwrap(Class<T> iface)
    


Constructor Detail
TransactionAwareDataSourceProxy
public TransactionAwareDataSourceProxy(DataSource dataSource)(Code)
Create the data source with the given data source to wrap.




Method Detail
getConnection
public Connection getConnection(String username, String password) throws SQLException(Code)
Not supported.



getConnection
public Connection getConnection() throws SQLException(Code)
Creates or returns an alreay created connection.

If a connection was already created within the context of the local thread, and the close method was not called yet, the ori connection will be returned (and will be a "not controlled" connection, which means that any call to close will be a no op).

Consider using DataSourceUtils.getConnection(javax.sql.DataSource) and DataSourceUtils.releaseConnection(java.sql.Connection) for simpler usage.




getLogWriter
public PrintWriter getLogWriter() throws SQLException(Code)



getLoginTimeout
public int getLoginTimeout() throws SQLException(Code)



getTargetDataSource
public DataSource getTargetDataSource()(Code)
Returns the targe data source.



getTransactionAwareConnectionProxy
protected Connection getTransactionAwareConnectionProxy(Connection target, DataSource dataSource, boolean controllsConnection)(Code)
A simple helper that return the Jdbc Connection wrapped in our proxy.



isWrapperFor
public boolean isWrapperFor(Class iface) throws SQLException(Code)



setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException(Code)



setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException(Code)



unwrap
public T unwrap(Class<T> iface) throws SQLException(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.