SpringBoot Application which performs CRUD operations on employee registry data
- Install Java8
- installation : https://www.oracle.com/technetwork/java/jdk8-downloads-2133151.html
- documentation : https://docs.oracle.com/javase/8/docs/api
- SpringBoot sources
- documentaion : https://spring.io/docs
- Maven
- installation : https://maven.apache.org/download.cgi
- documentation : https://maven.apache.org/guides
- move to project root directory
- run mvn verify
- run java -jar target/employee-registry --server.port=<port>
- example: java -jar target/employee-registry.jar --server.port=7878
-
docker run command :
- docker run -p <port>:8080 --name <container_name> chandraprakashreddy/applications:employee-registry-services-v1.01
-
run arguments :
- <port> : provide the port number on which it should be run the process
- <container_name> : provide the container name
- open http://<host>:<port>/swagger-ui.html
- example:- http://localhost:7878/swagger-ui.html can see sevice running
Find the pom dependency reference here pom.xml
This project is licensed under the MIT License - see the License for details