https://github.com/xatuke/springapp
A web-app which supports CRUD operations.
https://github.com/xatuke/springapp
Last synced: 7 days ago
JSON representation
A web-app which supports CRUD operations.
- Host: GitHub
- URL: https://github.com/xatuke/springapp
- Owner: xatuke
- Created: 2018-12-09T11:34:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T23:24:00.000Z (over 3 years ago)
- Last Synced: 2025-09-09T23:05:43.637Z (11 months ago)
- Language: Java
- Size: 12.6 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://gitter.im/JBossOutreach/gci)
# SpringApp
A web-app which supports CRUD operations.
[Youtube Video](https://youtu.be/89bYHjauJs8)
## Instructions to use:
### Database
Use the following script to make the data base:
```
CREATE DATABASE `springapp`;
CREATE TABLE `springapp`.`users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`firstname` varchar(45) NOT NULL DEFAULT '',
`lastname` varchar(100) NOT NULL DEFAULT '',
`address` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
```
### Server
I've used Tomcat Apache server (version: 9.0.13)
After connecting the project to the server, in `the server.xml` file find:
```
```
and replace it with:
```
```
After completing the above steps, you're good to go after starting the server, go to: `http://localhost:8080/SpringApp/user/list` on your browser.
## Screenshots



Google Code-in and the Google Code-in logo are trademarks of Google Inc.