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

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.

Awesome Lists containing this project

README

          

[![GCI Badge](https://img.shields.io/badge/Google%20Code--in-JBoss%20Community-red?labelColor=2096F3)](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
![img1](https://i.imgur.com/tqwBr3l.png)
![img2](https://i.imgur.com/mAxOaJc.png)
![img3](https://i.imgur.com/dLnXyZE.png)

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