Skip to content

Commit c0ab338

Browse files
committed
Spring Boot MVC DB
1 parent 896a6f5 commit c0ab338

File tree

7 files changed

+162
-3
lines changed

7 files changed

+162
-3
lines changed

InAddition/AnnotationsList.txt

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Annotation list in Fundamental Spring Action 5 th Edition:
2+
3+
4+
@Autowired
5+
@autoconfiguration
6+
-------------------------
7+
@Bean
8+
-------------------------
9+
@Configuration
10+
@Control
11+
@Component
12+
@ComponentScan
13+
-------------------------
14+
@Data ---> at the class level is provided by Lombok and tells Lombok to generate all of those missing methods.
15+
@DeleteMapping
16+
-------------------------
17+
@EnableAutoConfiguration
18+
@Entity
19+
@EnableWebSecurity
20+
------------------------
21+
@ManyToMany (targetEntity=Ingredient.class_)
22+
@ManyToOne
23+
------------------------
24+
@ NotNull
25+
@ NotBlank
26+
@ NoArgsConstructor ( access=AccessLevel.PRIVATE, force=true )
27+
------------------------
28+
@GetMapping
29+
-------------------------
30+
@Service
31+
@SpringBootApplication
32+
@SpringBootTest
33+
@Size
34+
@Slf4j - Simple Logging Facade for Java. Lombok's @Slf4j annotation to create a free SLF4J Logger object at runtime.
35+
@SessionAttributes
36+
@SuppressWarnings("")
37+
38+
-------------------------
39+
@PostMapping
40+
@PutMapping
41+
@PatchMapping
42+
@PrePersist
43+
@Profile
44+
-------------------------
45+
@RunWith(SpringRunner.class)---> prividing a test runner that guides JUnit in running a test. Plugin to JUnit to provide custom.
46+
@Repository
47+
@RequestMapping
48+
@RequiredArgsConstructor
49+
50+
------------------------
51+
@Table
52+
------------------------
53+
@Query("")
54+
------------------------
55+
@Valid
56+
------------------------
57+
@WebMvcTest - set up Spring support for testing Spring MVC. Although it could be made to start a server, mocking the mechanics of Spring MVC.

InAddition/Dependency_Maven.txt

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
the Spring Boot Action 5 th Edition Dependecy Injection
2+
3+
# Thymeleaf ---> generally prefer it over those other options. The template name is derived from the logical view name by prefixing it with /templates/ and postfixing it with .html. The resulting path for the template is /templates/home.html.
4+
5+
# JSP ---> Java Server Pages, None( provided by Tomcat or Jetty)
6+
7+
# FreeMarker ---> spring-boot-starter-freemarker | spring.freemarker.cache
8+
9+
# Groovy Templates ---> spring-boot-starter-grrovy-templates | spring.groovy.template.cache
10+
11+
# Mustache ---> spring-boot-starter-mustache | spring.mestache.cache
12+
13+
# Thymeleaf ---> spring-boot-starter-thymeleaf | spring.thymeleaf.cache
14+
15+
# DevTools ---> Automatic application restart when code changes, and browser refresh when browser-destined resources. Automatic diasble of template caches. Built in H2 Console if the H2 database is in use.
16+
17+
# H2 ---> H2 database for development, DevTools will also automatically enable an H2 Console that you can access from your web browser.
18+
19+
# JdbcTemplate ---> JDBC support.
20+
21+
# JPA (Java Persistence API)
22+
23+
# JDBC (Java Database Connectivity)
24+
25+
# Document (Mongo)
26+
27+
# Graph(Neo4j)
28+
29+
# JSON
30+
31+
# microservices
32+
33+
# lombok
34+
35+
# Spring Data JPA - JPA persistence against a relational database
36+
37+
# Spring Data MongoDB - Persistence to a Mongo document database
38+
39+
# Spring Data Neo4j - Persistence to a Neo4j graph database
40+
41+
# Spring Data Redis - Persistence to a Redis key-value store
42+
43+
# Spring Data Cassandra - Persistence to a Cassandra database
44+
45+
# Hibernate as the JPA implementation
46+
47+
# access (String) Allows access if the given SpEL expression evaluates to true
48+
49+
# anonymous () Allows access to anonymous users
50+
51+
# authenticated () Allows access to authenticated users
52+
53+
# denyAll() - Denies access unconditionally
54+
55+
# fullyAuthenticated() - Allows access if the user is fully authenticated (not remembered_)
56+
57+
# hasAnyAuthority(String) - Allow access if the user has any of the given autorities
58+
59+
# hasAnyRole(String) - Allows access if the user has any ofthe fiven roles
60+
61+
# hasAuthority(String) - Allows accesss if the user has the given authoriy
62+
63+
# hasIpAddress(String_ ) - Allows access if the request comes from the given IP addess
64+
65+
# hasRole(String) - Allows access if the user has the given role
66+
67+
# not() - negates the effect of any of the other access methods
68+
69+
# permitAll() - Allows access unconditionally
70+
71+
# rememberMe() - Allows access for users who are authenticated via remember - me.
72+
73+
# authentication - The user's authentication object
74+
75+
# denyAll - Always evaluates to false
76+
77+
# hasAnyRole(list of roles- true if the user has any of the given roles
78+
79+
# hasRole(role) - true if the user has the given role
80+
81+
# hasIpAddress(IP address) - true if the request comes from the given IP address
82+
83+
# isAnonymous () - true if the user is anonymous
84+
85+
# isAuthenticated () - true if the user is authenticated
86+
87+
# isFullAuthenticated()- ture if the user is fully authenticated(not authenticated with remember-me)
88+
89+
# isRememberMe() - true if the user was authenticated via remember - me
90+
91+
# permitAll - Always evaluates to true
92+
93+
#principal - The user's principal object
94+

InAddition/References.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Microservice
2+
Spring Microservices in Action by John Carnell (Manning, 2017, www.manning.com/books/spring-microservices-in-action).
3+
4+
# Spring Boot Action 5
5+
6+
https://github.com/habuma/spring-in-action-5-samples/blob/master/ch03/tacos-jdbc/src/main/java/tacos/data/JdbcTacoRepository.java
16.9 MB
Binary file not shown.
Binary file not shown.

Part-4 Spring Boot REST API/SpringPostgreslq/src/main/java/spring/database/model/Employee.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class Employee {
2323

2424

2525
@Id
26-
@GeneratedValue(strategy = GenerationType.AUTO)
26+
@GeneratedValue(strategy = GenerationType.IDENTITY)
2727
public Long getId() {
2828
return id;
2929
}

Part-4 Spring Boot REST API/SpringPostgreslq/src/main/resources/application.properties

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ spring.jpa.show-sql=true
99

1010
# The SQL dialect makes. Hibernate generate better SQL for the chosen database
1111

12-
spring.jpa.properties.hibernate.dilaect = org.hibernate.dialect.PostgresSQLDialect
12+
13+
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
14+
1315

1416
#Hibernate ddl auto (create, create-drop, validate, update)
1517

16-
spring.jpa.hibernate.ddl-auto=update
18+
spring.jpa.hibernate.ddl-auto=create

0 commit comments

Comments
 (0)