All Projects → apache → openjpa

apache / openjpa

Licence: Apache-2.0 license
Apache OpenJPA

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
XSLT
1337 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to openjpa

jsonb-spec
Java API for JSON Binding (JSON-B)
Stars: ✭ 54 (-45.45%)
Mutual labels:  javaee
microprofile1.2-samples
Eclipse MicroProfile 1.2 Samples
Stars: ✭ 22 (-77.78%)
Mutual labels:  javaee
further-cdi
🔊 Going further with CDI presentation
Stars: ✭ 28 (-71.72%)
Mutual labels:  javaee
springmvc
spring mvc study
Stars: ✭ 87 (-12.12%)
Mutual labels:  javaee
EasyShiro
基于 RBAC 模型功能全面的 Shiro 安全集成&简化&扩展组件。Shiro integration & simplifies & Extension component based RBAC
Stars: ✭ 47 (-52.53%)
Mutual labels:  javaee
codigo-tutoriales-blog
Código de ejemplo para el desarrollo ágil de aplicaciones con Java
Stars: ✭ 16 (-83.84%)
Mutual labels:  javaee
ozark-react
A ViewEngine for ReactJS templates for the Java EE MVC 1.0 reference implementation Ozark.
Stars: ✭ 43 (-56.57%)
Mutual labels:  javaee
firehose
firehose: the metrics gateway for prometheus
Stars: ✭ 23 (-76.77%)
Mutual labels:  javaee
EasyEE-Auto
EasyEE 自动化代码生成器。EasyEE Automated code generator.
Stars: ✭ 39 (-60.61%)
Mutual labels:  javaee
ncms
Java CMS engine. Host and develop multiple websites inside a single instance through the GUI and benefit from features like A/B testing, affiliate tracking tools, and a high performance template engine with CSS stylesheets processing & scripts minification.
Stars: ✭ 32 (-67.68%)
Mutual labels:  javaee
tomcat-training
Apache Tomcat Training Material
Stars: ✭ 15 (-84.85%)
Mutual labels:  javaee
x-ray
Statistics and analytics Java EE 6 software for blogs (tested with roller) and webapps. It is a vanilla Java EE 6 (REST/JAX-RS, CDI, EJB, JPA) app, tested on Glassfish v3.1, built with Maven 3 / hudson and developed with NetBeans 7. X-ray is the sample app of the "Real World Night Hacks" book.
Stars: ✭ 27 (-72.73%)
Mutual labels:  javaee
AwesomeMall
Java EE电商项目(使用SSM框架)
Stars: ✭ 29 (-70.71%)
Mutual labels:  javaee
learning-path-java-ee
Learning path Java EE
Stars: ✭ 19 (-80.81%)
Mutual labels:  javaee
SqlBuilder
This project is a SQL statement builder, allow you to write SQL in Java.
Stars: ✭ 15 (-84.85%)
Mutual labels:  javaee
ping
A WAR Ping For JavaEE 7 Application Servers
Stars: ✭ 51 (-48.48%)
Mutual labels:  javaee
HotelReservationSystem
A web application to book a room in a hotel (room reservation).
Stars: ✭ 76 (-23.23%)
Mutual labels:  javaee
TendereteOnline
A Java EE web application of an Online Shop developed with Hibernate + Spring + Bootstrap + jQuery
Stars: ✭ 19 (-80.81%)
Mutual labels:  javaee
sargeras
基于Saga思想解决长事务(LLT,Long-Live-Transaction)的框架
Stars: ✭ 22 (-77.78%)
Mutual labels:  javaee
myblog
项目:一款Github上开源的博客系统项目 目的:对学到的框架、开源组件、前端技术进行应用学习。同时开发完成后写技术博客,开源到Github上
Stars: ✭ 23 (-76.77%)
Mutual labels:  javaee

Apache OpenJPA - README

Preface

Thank you for downloading this release of Apache OpenJPA.

Apache OpenJPA is an implementation of the Java Persistence API specification.

License

The content of this repository is licensed under Apache License 2.0 http://www.apache.org/licenses/LICENSE-2.0

Further Information

The following files can be found in the openjpa-project subdirectory:

  • openjpa-project/BUILDING.txt

  • openjpa-project/CHANGES.txt

  • openjpa-project/RELEASE-NOTES.html

For documentation and project information, please visit our project site: http://openjpa.apache.org/

Compiling

The best way to compile Apache OpenJPA yourself is to run the build against the default derby database.

$> mvn clean install -Dsurefire.excludes.locking=**/*

Testing against different Databases

The Apache OpenJPA project also contains a setup for testing against multiple databases. The easiest way is to use Docker. We assume that Docker is installed to be used by your current user. The respective database image has to be started manually before starting the build. The reason for not starting it as part of the build itself is to be able to look at the database content after the build did run.

Tip

Hint for running with Podman

Some distributions switched from native Docker to Podman. If you get an error like missing DOCKER_HOST then you might try running the following command:

export DOCKER_HOST="unix:/run/user/$(id -u)/podman/podman.sock"
podman system service -t 3600 &
mvn ...

To start e.g. a PostgreSQL Docker image you can simply invoke the following command. Note the -N Maven option which stands for 'non-recursive'. This is used because the docker container is configured only at the root project but not at his children.

mvn -N -Ptest-mysql-docker docker:start

After that, you can execute your tests with the respective Maven profile

mvn clean install -Ptest-mysql-docker

Once the Docker image for the database is not needed any longer one can stop and remove it:

mvn -N -Ptest-mysql-docker docker:stop
mvn -N -Ptest-mysql-docker docker:remove

The following Maven profiles do exist so far:

  • test-mysql-docker

  • test-mariadb-docker

  • test-postgresql-docker

  • test-mssql-docker

  • test-oracle-docker

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].