com.lucadev.trampoline:trampoline-jwt

A trampoline starter module

License

License

GroupId

GroupId

com.lucadev.trampoline
ArtifactId

ArtifactId

trampoline-jwt
Last Version

Last Version

20190628
Release Date

Release Date

Type

Type

jar
Description

Description

com.lucadev.trampoline:trampoline-jwt
A trampoline starter module
Project URL

Project URL

https://github.com/Camphul/Trampoline

Download trampoline-jwt

How to add to project

<!-- https://jarcasting.com/artifacts/com.lucadev.trampoline/trampoline-jwt/ -->
<dependency>
    <groupId>com.lucadev.trampoline</groupId>
    <artifactId>trampoline-jwt</artifactId>
    <version>20190628</version>
</dependency>
// https://jarcasting.com/artifacts/com.lucadev.trampoline/trampoline-jwt/
implementation 'com.lucadev.trampoline:trampoline-jwt:20190628'
// https://jarcasting.com/artifacts/com.lucadev.trampoline/trampoline-jwt/
implementation ("com.lucadev.trampoline:trampoline-jwt:20190628")
'com.lucadev.trampoline:trampoline-jwt:jar:20190628'
<dependency org="com.lucadev.trampoline" name="trampoline-jwt" rev="20190628">
  <artifact name="trampoline-jwt" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.lucadev.trampoline', module='trampoline-jwt', version='20190628')
)
libraryDependencies += "com.lucadev.trampoline" % "trampoline-jwt" % "20190628"
[com.lucadev.trampoline/trampoline-jwt "20190628"]

Dependencies

compile (8)

Group / Artifact Type Version
com.lucadev.trampoline : trampoline-core jar 20190628
org.springframework.boot : spring-boot-starter-validation jar
org.springframework.boot : spring-boot-starter-security jar
io.jsonwebtoken : jjwt-api jar 0.10.5
org.springframework.boot : spring-boot-configuration-processor Optional jar
org.springframework.boot : spring-boot-starter jar
com.fasterxml.jackson.datatype : jackson-datatype-jsr310 jar
org.projectlombok : lombok Optional jar

provided (1)

Group / Artifact Type Version
javax.servlet : javax.servlet-api jar 3.0.1

runtime (2)

Group / Artifact Type Version
io.jsonwebtoken : jjwt-impl jar 0.10.5
io.jsonwebtoken : jjwt-jackson jar 0.10.5

test (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar

Project Modules

There are no modules declared in this project.

Trampoline

master next-release

Collection of reusable Spring Boot starter modules providing multiple new features/and or implementations(Spring Security, etc..).

Getting Started

Please make sure you have git, maven and Java (min. version 8) installed.

Trampoline is deployed on maven and is built upon Spring Boot 2.2.2.RELEASE

Please use the following dependency to use all functionality Trampoline offers:

<dependency>
       <groupId>com.lucadev.trampoline</groupId>
       <artifactId>trampoline-starter</artifactId>
       <version>20190628</version>
</dependency>

Read the docs for more information.

Example Project

example-app is a REST api to maintain blogs and comments on blogs.

The readme provides a bunch of information regarding the endpoints, dummy users. I also added a PostMan collection so you can easily test the api through postman.

Changelog

A changelog can be found under CHANGELOG.md.

Why Trampoline?

Some of you may ask why I wrote trampoline.

I have developed trampoline as a way to easily create monolith REST API's(you really do not require microservices for most projects). Trampoline has given me the ability to focus more on the actual projects I am hired for. I can just implement security with a couple of lines and easily add more functionality.

Versioning

We use the date that development of a new Trampoline version began as a version in the YYYYMMDD format.

Version 20190507 would have started development on the 7th of may 2019.

In-development versions are versioned the same but with the -SNAPSHOT suffix.

Flyway migrations

When Flyway is added to the classpath in your project and you use any of the following: trampoline-data and/or trampoline-asset-store and/or trampoline-security. You must adhere to some rules when writing your own migrations.

Custom migrations must start with version V10. V10 is required since Trampoline reserves atleast 10 migrations. Either the db/migration/mysql or db/migration/h2 dir is chosen as location for migrations based on the spring.jpa.properties.hibernate.dialect property. When the value of the property contains mysql it will use db/migration/mysql and when it contains h2 it will use db/migration/h2. The default fallback is to db/migration/mysql.

Contributing

If you wish to contribute please read the guidelines as described in CONTRIBUTING.md

Branches

All the changes before releasing a new version(and publishing to maven) will be pushed to the next-release branch. This branch will be merged to master before building and deploying to maven.

See CHANGELOG.md for more information.

Authors

Feel free to contribute to the project.

License

This project is licensed under the MIT License

Versions

Version
20190628
20190509