-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[jOOQ#5377] Add alternative TransactionProvider that implements Threa…
…dLocal semantics
- Loading branch information
Showing
10 changed files
with
532 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
jOOQ/src/main/java/org/jooq/ThreadLocalTransactionalCallable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/** | ||
* Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com) | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Other licenses: | ||
* ----------------------------------------------------------------------------- | ||
* Commercial licenses for this work are available. These replace the above | ||
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial | ||
* database integrations. | ||
* | ||
* For more information, please visit: http://www.jooq.org/licenses | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
*/ | ||
package org.jooq; | ||
|
||
/** | ||
* An <code>FunctionalInterface</code> that wraps transactional code. | ||
* | ||
* @author Lukas Eder | ||
*/ | ||
|
||
@FunctionalInterface | ||
|
||
public interface ThreadLocalTransactionalCallable<T> { | ||
|
||
/** | ||
* Run the transactional code. | ||
* <p> | ||
* If this method completes normally, and this is not a nested transaction, | ||
* then the transaction will be committed. If this method completes with an | ||
* exception, then the transaction is rolled back to the beginning of this | ||
* <code>ThreadLocalTransactionalCallable</code>. | ||
* | ||
* @return The outcome of the transaction. | ||
* @throws Exception Any exception that will cause a rollback of the code | ||
* contained in this transaction. If this is a nested | ||
* transaction, the rollback may be performed only to the state | ||
* before executing this | ||
* <code>ThreadLocalTransactionalCallable</code>. | ||
*/ | ||
T run() throws Exception; | ||
} |
68 changes: 68 additions & 0 deletions
68
jOOQ/src/main/java/org/jooq/ThreadLocalTransactionalRunnable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/** | ||
* Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com) | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Other licenses: | ||
* ----------------------------------------------------------------------------- | ||
* Commercial licenses for this work are available. These replace the above | ||
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial | ||
* database integrations. | ||
* | ||
* For more information, please visit: http://www.jooq.org/licenses | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
*/ | ||
package org.jooq; | ||
|
||
/** | ||
* An <code>FunctionalInterface</code> that wraps transactional code. | ||
* | ||
* @author Lukas Eder | ||
*/ | ||
|
||
@FunctionalInterface | ||
|
||
public interface ThreadLocalTransactionalRunnable { | ||
|
||
/** | ||
* Run the transactional code. | ||
* <p> | ||
* If this method completes normally, and this is not a nested transaction, | ||
* then the transaction will be committed. If this method completes with an | ||
* exception, then the transaction is rolled back to the beginning of this | ||
* <code>ThreadLocalTransactionalRunnable</code>. | ||
* | ||
* @throws Exception Any exception that will cause a rollback of the code | ||
* contained in this transaction. If this is a nested | ||
* transaction, the rollback may be performed only to the state | ||
* before executing this | ||
* <code>ThreadLocalTransactionalRunnable</code>. | ||
*/ | ||
void run() throws Exception; | ||
} |
66 changes: 66 additions & 0 deletions
66
jOOQ/src/main/java/org/jooq/exception/ConfigurationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/** | ||
* Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com) | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Other licenses: | ||
* ----------------------------------------------------------------------------- | ||
* Commercial licenses for this work are available. These replace the above | ||
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial | ||
* database integrations. | ||
* | ||
* For more information, please visit: http://www.jooq.org/licenses | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
* | ||
*/ | ||
package org.jooq.exception; | ||
|
||
import org.jooq.Configuration; | ||
|
||
/** | ||
* The {@link Configuration} was set up in a way that does not allow for a | ||
* particular operation. | ||
* | ||
* @author Lukas Eder | ||
*/ | ||
public class ConfigurationException extends DataAccessException { | ||
|
||
/** | ||
* Generated UID | ||
*/ | ||
private static final long serialVersionUID = -6460945824599280420L; | ||
|
||
/** | ||
* Constructor for ConfigurationException. | ||
* | ||
* @param message the detail message | ||
*/ | ||
public ConfigurationException(String message) { | ||
super(message); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.