Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javazakariae/spring5certification
Spring Certification: This repository contains my examples and some best references to prepare the Spring 5 certification
https://github.com/javazakariae/spring5certification
aop certification ioc-framework pluralsight-courses spring spring-boot spring-data spring-data-jpa spring-jdbc spring-mvc spring-security springboot springframework springmvc
Last synced: about 1 month ago
JSON representation
Spring Certification: This repository contains my examples and some best references to prepare the Spring 5 certification
- Host: GitHub
- URL: https://github.com/javazakariae/spring5certification
- Owner: JavaZakariae
- License: mit
- Created: 2019-07-03T21:12:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T09:17:40.000Z (4 months ago)
- Last Synced: 2024-09-29T08:23:37.571Z (about 2 months ago)
- Topics: aop, certification, ioc-framework, pluralsight-courses, spring, spring-boot, spring-data, spring-data-jpa, spring-jdbc, spring-mvc, spring-security, springboot, springframework, springmvc
- Language: Java
- Homepage:
- Size: 2.84 MB
- Stars: 56
- Watchers: 1
- Forks: 30
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![stars](https://img.shields.io/github/stars/javazakariae/spring5certification?style=social)
![last commit date](https://img.shields.io/github/last-commit/javazakariae/spring5certification)# Preparation for the Spring 5 Certification
- [Preparation for the Spring 5 Certification](#preparation-for-the-spring-5-certification)
- [Introduction](#introduction)
- [The best resources to follow](#the-best-resources-to-follow)
- [Books](#books)
- [Youtube channel](#youtube-channel)
- [Pluralsight courses(paid but worth it)](#pluralsight-coursespaid-but-worth-it)
- [AOP](#aop)
- [Spring JDBC](#spring-jdbc)
- [Spring data jpa](#spring-data-jpa)
- [Spring Boot](#spring-boot)
- [Stackoverflow questions](#stackoverflow-questions)
- [Other resources](#other-resources)
- [Personal opinion](#personal-opinion)## Introduction
This repository contains my code examples for the preparation of the certification. I have passed the certification on the 20th july of 2019, I have been certified with a score of 88%. This repository contains some good references to master the fundamentals of the framework, so It's not only for a certification purpose.
The certification questions are based on the official [study-guide](https://d1fto35gcfffzn.cloudfront.net/academy/Spring-Professional-Certification-Study-Guide.pdf), so I recommend to focus on those questions. In my opinion, if you can easily awnsers those questions, you will pass the certification.
To prepare my certification, I read few books, a lot of articles, I watched many Pluralsight courses and some Youtube videos on specific subjects.
To help you prepare the certification, I recommend to learn from the following resources, some are not free, but they are worth.
## The best resources to follow
[Core Spring 5 Certification in Detail](https://leanpub.com/corespring5certificationindetail) by [Ivan Krizsan
](https://leanpub.com/u/ivan-krizsan)
This book should be a must for everyone willing to pass the certification, it should be checked only as a last step before passing the certification, so for the newcomers to the framework I don't recommend to begin with, because it is just a summary and it contains some responses that could be helpful to pass the certification.[ivankrizsan's blog](https://www.ivankrizsan.se/)
## Books
[Spring in Action: Covers Spring 4](https://www.amazon.com/Spring-Action-Covers-4/dp/161729120X/ref=sr_1_2?keywords=spring+in+action&qid=1570962746&sr=8-2):
I don't recommend the fifth edition, the 4th edition is a good start for everyone willing to understand the fundamentals of the Framework, like Dependency Injection, Aspect Oriented Programming.... It is not mandatory to read every chapter. It is the first resource i have checked, I didn't read the full book, but only few chapters, let's say 50% of the book.
[Spring 5 Design Patterns](https://www.amazon.com/Spring-Design-Patterns-application-development/dp/1788299450/ref=sr_1_1?crid=ZRVPY8S85GBD&keywords=spring+design+patterns&qid=1570962674&sprefix=spring+design+pa%2Caps%2C216&sr=8-1) :
A really good book that helped me to dig deeper into the framework. It will help you to understand how the Spring Framework is using some design patterns internally.
[Spring Boot in Action](https://www.amazon.com/Spring-Boot-Action-Craig-Walls/dp/1617292540/ref=sr_1_2?qid=1570963413&refinements=p_27%3ACraig+Walls&s=books&sr=1-2&text=Craig+Walls):
For a deeper understanding of the Spring boot module. The book is not big but it gives more details about the spring boot modules. Apart from that, I have watched many youtube videos to get much understanding of the spring boot modules, I recommend to check some talks given by [Stéphane Nicoll](https://www.youtube.com/results?search_query=spring+boot+stephane+nicol) about spring boot.
## Youtube channel[Laurentiu Spilca](https://www.youtube.com/channel/UC0z3MpVGrpSZzClXrYcZBfw):
Laurentiu Spilca made a playlist on Spring Fundamentals, you will find very good content on DI, AOP, Transaction, Data, Rest, Actuator and many more, recently he made a playlist about spring security...
## Pluralsight courses(paid but worth it)
#### AOP
[Aspect Oriented Programming](https://app.pluralsight.com/library/courses/aspect-oriented-programming-spring-aspectj/table-of-contents)#### Spring JDBC
[Building Applications Using Spring JDBC
](https://app.pluralsight.com/library/courses/building-applications-spring-jdbc/table-of-contents)#### Spring data jpa
[Getting Started with Spring Data JPA](https://app.pluralsight.com/library/courses/spring-data-jpa-getting-started/table-of-contents)#### Spring Boot
[Creating Your First Spring Boot Application](https://app.pluralsight.com/library/courses/spring-boot-first-application/table-of-contents)[Spring Boot: Efficient Development, Configuration, and Deployment](https://app.pluralsight.com/library/courses/spring-boot-efficient-development-configuration-deployment/table-of-contents)
## Stackoverflow questions
Here are some responses to some very important questions:
- [java - @RequestBody and @ResponseBody annotations in Spring - Stack Overflow](https://stackoverflow.com/questions/11291933/requestbody-and-responsebody-annotations-in-spring).
- [java - ApplicationContext and ServletContext - Stack Overflow](https://stackoverflow.com/questions/31931848/applicationcontext-and-servletcontext).
- [Differences between Abstract Factory Pattern and Factory Method - Stack Overflow](https://stackoverflow.com/questions/5739611/differences-between-abstract-factory-pattern-and-factory-method).
- [java - BeanFactoryPostProcessor and BeanPostProcessor in lifecycle events - Stack Overflow](https://stackoverflow.com/questions/30455536/beanfactorypostprocessor-and-beanpostprocessor-in-lifecycle-events).
- [java - Difference between <context:annotation-config> vs <context:component-scan> - Stack Overflow](https://stackoverflow.com/questions/7414794/difference-between-contextannotation-config-vs-contextcomponent-scan).
- [java - Difference between applicationContext.xml and spring-servlet.xml in Spring Framework - Stack Overflow](https://stackoverflow.com/questions/3652090/difference-between-applicationcontext-xml-and-spring-servlet-xml-in-spring-frame).
- [java - Difference between Interceptor and Filter in Spring MVC - Stack Overflow](https://stackoverflow.com/questions/35856454/difference-between-interceptor-and-filter-in-spring-mvc/35856496).
- [java - Hibernate SessionFactory vs. EntityManagerFactory - Stack Overflow](https://stackoverflow.com/questions/5640778/hibernate-sessionfactory-vs-entitymanagerfactory).
- [java - How do I update an entity using spring-data-jpa? - Stack Overflow](https://stackoverflow.com/questions/11881479/how-do-i-update-an-entity-using-spring-data-jpa).
- [java - How do servlets work? Instantiation, sessions, shared variables and multithreading - Stack Overflow](https://stackoverflow.com/questions/3106452/how-do-servlets-work-instantiation-sessions-shared-variables-and-multithreadi).
- [java - How to accept Date params in a GET request to Spring MVC Controller? - Stack Overflow](https://stackoverflow.com/questions/15164864/how-to-accept-date-params-in-a-get-request-to-spring-mvc-controller).
- [java - How to access a value defined in the application.properties file in Spring Boot - Stack Overflow](https://stackoverflow.com/questions/30528255/how-to-access-a-value-defined-in-the-application-properties-file-in-spring-boot).
- [java - PUT request in Spring MVC - Stack Overflow](https://stackoverflow.com/questions/35878351/put-request-in-spring-mvc).
- [java - Spring MVC: How to perform validation? - Stack Overflow](https://stackoverflow.com/questions/12146298/spring-mvc-how-to-perform-validation).
- [java - What are the possible values of the #Hibernate hbm2ddl.auto configuration and what do they do - Stack Overflow](https://stackoverflow.com/questions/438146/what-are-the-possible-values-of-the-hibernate-hbm2ddl-auto-configuration-and-wh).
- [java - What is @ModelAttribute in Spring MVC? - Stack Overflow](https://stackoverflow.com/questions/3423262/what-is-modelattribute-in-spring-mvc).
- [java - What is a NoSuchBeanDefinitionException and how do I fix it? - Stack Overflow](https://stackoverflow.com/questions/39173982/what-is-a-nosuchbeandefinitionexception-and-how-do-i-fix-it).
- [java - What's the difference between ResponseEntity and HttpEntity in Spring_ - Stack Overflow](https://stackoverflow.com/questions/42829823/whats-the-difference-between-responseentity-and-httpentity-in-spring).
- [Spring JdbcTemplate execute vs update - Stack Overflow](https://stackoverflow.com/questions/39454507/spring-jdbctemplate-execute-vs-update).
- [spring - How to implement RowMapper using java lambda expression - Stack Overflow](https://stackoverflow.com/questions/41923360/how-to-implement-rowmapper-using-java-lambda-expression).
- [spring boot - Difference between using MockMvc with SpringBootTest and Using WebMvcTest - Stack Overflow](https://stackoverflow.com/questions/39865596/difference-between-using-mockmvc-with-springboottest-and-using-webmvctest).
- [What is the difference between BeanPostProcessor and init/destroy method in Spring? - Stack Overflow](https://stackoverflow.com/questions/9862127/what-is-the-difference-between-beanpostprocessor-and-init-destroy-method-in-spri).
- [Spring Boot - Loading Initial Data - Stack Overflow](https://stackoverflow.com/questions/38040572/spring-boot-loading-initial-data).
- [java - BeanPostProcessor confusion - Stack Overflow](https://stackoverflow.com/questions/9761839/beanpostprocessor-confusion?rq=1).
- [Using Spring ResponseEntity to Manipulate the HTTP Response](https://www.baeldung.com/spring-response-entity).
- [Spring MVC and the @ModelAttribute Annotation | Baeldung](https://www.baeldung.com/spring-mvc-and-the-modelattribute-annotation).
- [Spring AOP AspectJ @AfterThrowing Example](https://howtodoinjava.com/spring-aop/aspectj-afterthrowing-annotation-example).
- [Difference between getOne and findById in Spring Data JPA?](https://www.javacodemonk.com/difference-between-getone-and-findbyid-in-spring-data-jpa-3a96c3ff).
- [Difference Between BeanFactory and ApplicationContext in Spring](https://dzone.com/articles/difference-between-beanfactory-and-applicationcont).## Other resources
[Git repository](https://github.com/vshemyako/spring-certification-5.0): This repository contains responses of the the official study-guide questions.[Git repository](https://github.com/LinnykOleh/Spring): This second repository contains the responses of the official study-guide questions and also explanations of the theoretical notion we deal with in the Certification.
[Git repository](https://github.com/vojtechruz/spring-core-cert-notes-4.2): This third repository, even if it is about the spring 4 certification, you can find very good content and explanation about the spring ecosystem.
## Personal opinion
Sometimes even if the resources are valuable, it can be hard to understand some subjects, for my personal experience, i try to see the prerequisites of the complicated subject.
It depends also on your background on Spring and some design patterns used by the framework.In parallel with that, I read a lot of answers from Stackoverflow, just google what you don't understand.