An open API service indexing awesome lists of open source software.

https://github.com/andreid/xhipster

An anti JHipster approach to Spring Framework
https://github.com/andreid/xhipster

jhipster spring spring-boot springframework template

Last synced: 27 days ago
JSON representation

An anti JHipster approach to Spring Framework

Awesome Lists containing this project

README

          

# XHipster
An anti JHipster approach to Spring Framework

#### Does JHipster have too much stuff under it's hood ?

I believe so. JHipster is a great project, but during it's 7,797 (now) it has grown too much. Too much in order for a developer to be able to handle everything
what's inside it. Too much stuff you don't have expertise over to be used in production! Unless you're an expert javascript, java, front-end, database engineer all in one SUPER-STAR. I guess not.

Here's a MUCH simpler template for you to use.

# XHipster to the rescue

XHipster is a simple Spring Boot template that does very little with much less lines of code giving you (the developer) choices for your own things.

## How to

If you want to get THIS example running with programming languages like in the picture make sure you setup MySQL first and configure with with a database named xhipster
See *application.yml* for the config settings (pay attention to the MySQL port).

Using docker ?
~~~~
beginning:
docker run --detach --name=test-mysql --env="MYSQL_ROOT_PASSWORD=password" --publish 6603:3306 mysql

after:
docker ps -a
docker start -ai [CONTAINER_ID]

~~~~