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
- Host: GitHub
- URL: https://github.com/andreid/xhipster
- Owner: AndreiD
- License: apache-2.0
- Created: 2017-08-15T13:28:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-03T07:38:24.000Z (almost 9 years ago)
- Last Synced: 2025-07-28T12:36:14.923Z (11 months ago)
- Topics: jhipster, spring, spring-boot, springframework, template
- Language: HTML
- Size: 172 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
~~~~