https://github.com/actframework/act-ebean
The ebean plugin that uses latest ebeanorm and requrie java 8 support
https://github.com/actframework/act-ebean
Last synced: 20 days ago
JSON representation
The ebean plugin that uses latest ebeanorm and requrie java 8 support
- Host: GitHub
- URL: https://github.com/actframework/act-ebean
- Owner: actframework
- License: apache-2.0
- Created: 2017-04-04T22:04:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T09:39:15.000Z (almost 6 years ago)
- Last Synced: 2025-07-17T13:46:17.953Z (7 months ago)
- Language: Java
- Size: 147 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# act-ebean2
[](http://www.apache.org/licenses/LICENSE-2.0.html)
[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22act-ebean2%22)
[](https://travis-ci.org/actframework/act-ebean2)
[](https://codecov.io/gh/actframework/act-ebean2)
[](http://www.javadoc.io/doc/org.actframework/act-ebean2)
Ebean plugin for ACT Framework.
## act-ebean vs act-ebean2
* act-ebean: support JDK7 and JDK8
* act-ebean2: uses latest ebean version but can only run on JDK8
**Note**
[act-ebean](https://github.com/actframework/act-ebean) artifactId is now **act-ebean-java7**, and [act-ebean2](https://github.com/actframework/act-ebean2/)'s artifactId is now **act-ebean**
## Versions
Refer to https://github.com/actframework/actframework/blob/master/VERSION_MATRIX.md
## Configuration
For configuration items, please refer to [act-sql-common](https://github.com/actframework/act-sql-common)
If application needs to manipulate the loaded configuration before `EbeanServer` is created, e.g. configuring the multi-tenant support, try add the following method in any Class:
```java
@OnEvent(beforeAppStart = true)
public static void configureEbean(ServerConfig config) {
// do whatever required on ebean's ServerConfig
}
```