Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/le4ndro/springhibernateex
Sample project using Spring 4 and Hibernate with annotations
https://github.com/le4ndro/springhibernateex
annotations hibernate spring-mvc
Last synced: 24 days ago
JSON representation
Sample project using Spring 4 and Hibernate with annotations
- Host: GitHub
- URL: https://github.com/le4ndro/springhibernateex
- Owner: le4ndro
- License: mit
- Created: 2015-06-22T17:36:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T10:33:14.000Z (almost 7 years ago)
- Last Synced: 2024-11-17T11:19:42.242Z (3 months ago)
- Topics: annotations, hibernate, spring-mvc
- Language: Java
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpringHibernateEx
Sample project using Spring 4 and Hibernate with annotations.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
1. Java JDK 8
2. Apache Maven
3. Servlet container(Tomcat)
4. MySQL database### Installing
1. Create springhibernateex database on your MySQL server
```
CREATE DATABASE springhibernateex;
```2. Execute the script inside sql folder
3. Compile project.
```
mvn compile
```4. Create WAR file.
```
mvn package
```
5. Go to target folder and deploy SpringHibernateEx.war to your servlet container.## Built With
* [Spring](https://docs.spring.io/spring/docs/4.0.x/spring-framework-reference/html/) - The web framework used
* [Hibernate](http://hibernate.org/orm/documentation/4.3/) - The ORM used
* [Maven](https://maven.apache.org/) - Dependency Management## Authors
* **Leandro Souza** - *Initial work*
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## Acknowledgments
* This project is for learning purposes