Spring Boot
Fleetingframework java
aspect oriented programming
- Référence externe : https://en.wikipedia.org/wiki/Aspect-oriented_programming
In computing, aspect-oriented programming (AOP) is a programming paradigm that aims to increase modularity by allowing the separation of cross-cutting concerns. It does so by adding additional behavior to existing code (an advice) without modifying the code itself, instead separately specifying which code is modified via a “pointcut” specification, such as “log all function calls when the function’s name begins with ‘set’”. This allows behaviors that are not central to the business logic (such as logging) to be added to a program without cluttering the code, core to the functionality. AOP forms a basis for aspect-oriented software development.
@Transactional
@Configuration
Notes pointant ici
- @Bean
- @Component
- @GetMapping
- @RequestMapping
- @RestController
- A Guide to the ResourceBundle
- advice
- aspect oriented programming with spring
- bill of materials
- building an application with spring boot
- cglib
- IoC container
- JPA repositories
- spring @Configuration vs @Component
- transactions with spring and jpa
- use a spring boot application as a dependency
- what is the difference between a Decorator, Attribute, Aspect, and Trait?
- working with SQL Databases