|
| 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 | + |
0 commit comments