Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/urunov/spring-in-action-5-book-all-projects

Spring MVC, Spring Boot, JPA, JDBC, H2, MySQL, Oracle, Mango DB, Security, безопасность, сервер
https://github.com/urunov/spring-in-action-5-book-all-projects

api db kafka mangodb oracle-database reactive reactive-spring reactive-spring-data security server spring spring-boot-starter spring-cloud spring-data-jpa spring-mvc spring-security springboot-sample springboot2 springframework web-app

Last synced: about 1 month ago
JSON representation

Spring MVC, Spring Boot, JPA, JDBC, H2, MySQL, Oracle, Mango DB, Security, безопасность, сервер

Awesome Lists containing this project

README

        

# Spring in Action 5 Book Projects

* Spring, Spring Boot, JPA, JDBC, MySQL, Oracle, H2, DB

Those are the project codes for Spring in Action, Fifth Edition, by Craig Walls [Spring in Action 5](https://www.manning.com/books/spring-in-action-fifth-edition)
#

1. [Chapter-1. Getting started with Spring](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/Chapter1_Getting%20started%20with%20Spring)

* Maven project provides Spring Boot and Spring Web Initialize thymeleaf
#
2. [Chapter-2. Developing web app](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/Chapter2_Developing%20web%20app)
* The project provides Spring Boot and JDBC template (using MySQL) implementation. In case of, Spring Boot using Maven configuration, and DB (database) using JDBC (only template not JPA ).
#
3. [Chapter-3. Working with Data_JDBC](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/Chapter3_Working%20with%20Data_JDBC)
* Taco pizza (which I called project name) project provides Spring Boot and JDBC template (using MySQL) implementation. In case of, Spring Boot using Gradle configuration, and DB (database) using JDBC (only template not JPA ).

+ [Chapter-3. Working with Data JPA](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/Chapter3_Working%20with%20Data%20JPA)
* Taco pizza (which I called project name) project provides Spring Boot and JDBC template (using MySQL) implementation. In case of, Spring Boot using Maven configuration, and DB (database) using JDBC and JPA.

### Important:

com.h2database
org.hibernate
credit_card_number
assertj-core
lombok
htmlunit-driver



UTF-8

UTF-8
1.8

#
4. [Chapter-4. Securing Spring ](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/Chapter4_Securing%20Spring)

Autoconfiguring Spring Security
* Defining custom user storage
* Customizing the login page
* Securing against CSRF attacks
* Knowing your user

### Missing parts in the textbook
> Necessary dependencies in the .pom file
>
> org.springframework.boot
> spring-boot-starter-data-jpa
>
>
> javax.persistence
> javax.persistence-api
> 2.2
>
> Inspect h2-console using your browser
> Log in
Go to localhost:8080/h2-console
Set JDBC URL to jdbc:h2:mem:testdb
Test connection should show successful
Click connect

#

There is one folder for each chapter in the book—​except for chapters 11 and 12, which share a source folder—​each containing most or all of the sample code for that chapter.

This source code is available for download from the book’s page at Manning.com as well as in GitHub at [Projects](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects)

# IMPORTANT: Lombok
To avoid having to write and maintain what is mostly boilerplate Java code, I’ve elected to use Lombok in all of these examples. When building from the command line, using Maven, you shouldn’t encounter any problems, as Lombok is included as part of the build process.
But you will very likely encounter issues if you import these projects into your IDE.

If, after importing the projects into your IDE, you see errors complaining about missing getters, setters, constructors, or log instance variables, it’s because Lombok is not installed in your IDE.
These bits of code will be generated by Lombok automatically, but your IDE doesn’t know that and complains that they are missing.
Indeed, you may observer Maven (pom.xml) file and all dependecy. In that project we should use Intellij Idea.

To fix the errors, simply install Lombok. Lombok has support for most common (and arguably a few uncommon) IDEs, so no matter which IDE you use, you should be covered. See [Lombok](https://projectlombok.org/setup/overview ) for details on installing Lombok in your IDE.

# InAddition
In that folder, you can donwload [Spring](https://github.com/Hamdambek/Spring-in-Action-5-Book-All-Projects/tree/master/InAddition), and Annotation explanations.


# Thymeleaf