Executing database lookup by using keywords in API urls. Also choose which fields will be returned in JSON responses.
Refer wiki for more Details.
| Stable Release Version | JDK Version compatibility | Release Date |
|---|---|---|
| 2.1.0 | 1.11+ | 04/18/2021 |
| 1.0.4 | 1.8+ | 04/14/2021 |
Spring-Helper is licensed by G-Corporation.
- Version 2.1.0 released on 04/18/2021.
- Version 2.0.1 released on 04/15/2021.
- Version 2.0.0 released on 04/14/2021.
- Version 1.0.4 released on 04/14/2021.
- Version 1.0.3 released on 02/27/2021.
- Version 1.0.2 released on 02/25/2021.
- Version 1.0.1 released on 02/24/2021.
- Version 1.0.0 released on 02/24/2021.
- Migrating to Java 11.
- Refactoring into multi-module maven project.
Spring-Helper is deployed at sonatypes open source maven repository. You may use the following repository configuration (if you are interested in snapshots)
<repositories>
<repository>
<id>spring-helper-snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>This repositories releases will be synched to maven central on a regular basis. Snapshots remain at sonatype.
Alternatively you can pull Spring-Helper from the central maven repository, just add these to your pom.xml file:
<!-- Bring all the helper objects working with spring jpa data, commons...-->
<dependency>
<groupId>com.github.gcorporationcare</groupId>
<artifactId>spring-helper-data</artifactId>
<version>2.1.0</version>
</dependency>
<!-- Bring all the helper objects working with spring web, web security...-->
<dependency>
<groupId>com.github.gcorporationcare</groupId>
<artifactId>spring-helper-web</artifactId>
<version>2.1.0</version>
</dependency>As it is maven project, buidling is just a matter of executing the following in your console:
mvn package
This will produce the spring-helper-VERSION.jar file under the target directory.
If you need help using Spring-Helper feel free to drop an email or create an issue in github.com (preferred)
To help Spring-Helper development you are encouraged to
- Provide suggestion/feedback/Issue
- pull requests for new features
- Star 🌟 the project