A lightweight and simple transaction library for non JEE projects.
You can find a simple example project under example. In short terms you have to:
-
Include strix as dependency
<dependency> <groupId>io.mcarle</groupId> <artifactId>strix</artifactId> <version>1.0.1</version> </dependency>
-
Include aspectj-maven-plugin and define strix as
aspectLibrary
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>1.10</version> <executions> <execution> <goals> <goal>compile</goal> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <complianceLevel>${maven.compiler.source}</complianceLevel> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <aspectLibraries> <aspectLibrary> <groupId>io.mcarle</groupId> <artifactId>strix</artifactId> </aspectLibrary> </aspectLibraries> </configuration> </plugin>
-
Start strix before you call any transactional methods
import io.mcarle.strix.Strix; import org.glassfish.jersey.servlet.ServletContainer; public class ExampleServlet extends ServletContainer { @Override public void destroy() { super.destroy(); Strix.shutdown(); } @Override public void init() throws ServletException { Strix.startup(); super.init(); } }
-
Annotate your classes or methods, which should be transactional with strix's
@Transactional
-Annotation likeimport io.mcarle.strix.annotation.Transactional; import static io.mcarle.strix.Strix.em; @Transactional public class ExampleManager { public <T> T find(Class<T> entityClass, Long id) { return em().find(entityClass, id); } }
Unless explicitly stated otherwise all files in this repository are licensed under the Apache Software License 2.0
Copyright 2017 Marcel Carlé
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.