Mattus122 / projectbanfico

0 stars 0 forks source link

Week 2 Target #2

Open Mattus122 opened 1 month ago

Mattus122 commented 1 month ago
Nivas138 commented 1 month ago

Hi @Mattus122

Thank you

Mattus122 commented 3 weeks ago

//updation in progress

**- [ ] Register on github.com using personal id

Resource : https://www.youtube.com/watch?v=RGOj5yH7evk **

** HTTP response status codes indicate whether a specific request has been successfully completed. Responses are grouped in five classes:

Informational responses (100 – 199)100 : Continue Successful responses (200 – 299) 200 : Success , 201 : Created Redirection messages) (300 – 399): 302 : Found Client error responses) (400 – 499) 403 : Forbidden , 400 : Bad Request , 401 : Unauthorised , 402 : Payment required Server error responses) (500 – 599) 500 : Internal Server Error , 502 : Bad gateway

Resource : https://developer.mozilla.org/en-US/docs/Web/HTTP/Status **

** Spring Boot CRUD Operations and Implementation Using Controller and Spring Data JPA CRUD : GET ,PUT ,POST ,DELETE Inversion Of Control And Dependancy Injection @Bean , Configuration using Xml File @Autowired

validate - validate the project is correct and all necessary information is available compile - compile the source code of the project test - test the compiled source code using a suitable unit testing framework. These tests should not require the code be packaged or deployed package - take the compiled code and package it in its distributable format, such as a JAR. verify - run any checks on results of integration tests to ensure quality criteria are met install - install the package into the local repository, for use as a dependency in other projects locally deploy - done in the build environment, copies the final package to the remote repository for sharing with other developers and projects. POM.xml file :it is an XML file that contains information about the project and configuration details used by Maven to build the project. Dependancies worked with :

  1. starter web
  2. Spring Data JPA
  3. Spring Security
  4. Json(3 dependancies )
  5. Lombok (for annotation processing )
  6. H2 Database (for in memory Database) Resources : https://maven.apache.org/guides/index.html