Skip to content

hoangtien2k3/springboot-restfull-webservices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpringBoot-RestFull-WebServices

Tools and Technologies Used:

  • Spring Boot 3.0
  • Java 17
  • Spring Data JPA
  • Hibernate
  • MySQL Database
  • Maven
  • Postman

Spring Boot Project Architecture

image

application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/user_management
spring.datasource.username=root    
spring.datasource.password=12042003

spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.jpa.hibernate.ddl-auto=update

management.endpoints.web.exposure.include=*
management.info.env.enable=true
management.endpoint.enable=true
management.endpoint.health.show-details=always
management.endpoint.shutdown.enabled=true

info.app.name=Spring Boot Restful Web Services
info.app.description=Spring Boot Restful Web Services Demo
info.app.version=1.0.0

Using package project

  • entity
  • repository
  • service
  • controller
  • mapper
  • exception
  • Application

Tables database MySql

Field Type Null Key Default Extra
id bigint NO PRI NULL
create_by varchar(255) YES NULL
create_date datetime(6) YES NULL
last_midified_date datetime(6) YES NULL
last_modified_by varchar(255) YES NULL
email_address varchar(255) NO NULL
first_name varchar(255) NO NULL
last_name varchar(255) NO NULL

POST User

Get User

Get All Users

PUT User

DELETE User

master

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages