Kotlin Hipster — Spring Boot + Kotlin

sendilkumarn
4 min readJan 10, 2020
KHipster

Scripts are awesome isn’t it? Remember how we generate applications few years before, with scripts.

Bootstrapping an application is a mundane task. With changing technologies everyday, spending a lot of time for these mundane task is not worth it.

During those furious hours of debugging a broken project generation script, I found JHipster and fell in love with it immediately ❤️.

At the core, JHipster generates an application and it has all the bells and whistles.

Over the years, the awesome community made JHipster even more awesome. 😎 👏 ✨

JHipster grew exponentially. Feature after feature entered into the world of JHipster. This bloated our codebase and made it harder to maintain.

At this point, we introduced the concept called blueprints. Blueprints are small sub-generator that hooks on to different stages of the JHipster’s main generator.

For example, In JHipster we have a backend generator (server) and a frontend generator (client). With Blueprint you can modify any or both the generators either completely or partially.

Kotlin

I am biased towards statically typed languages and love a language that allows me to write…

--

--