[008] - Intro To MapStruct | Java Bean Mapping | Spring Boot | Angular | JAVA FULL STACK

preview_player
Показать описание
Credits:

FULL STACK DEVELOPMENT Using Java / Spring / Spring Boot / Angular / HttpClient / MongoDB.

This is not an another course you see on YouTube. To be clear this is not some kind demo course. In this course we will be developing the Recruitment Management System and will add security and then will deploy the same on some cloud platform. I will be covering the basics wherever needed but its good to have some understanding of the framework.

If you want to check out the basics of spring boot I recommend you to check out my another video on Spring Boot. It is only 150 mins in length and will give you all the idea about spring boot right from creation to deployment.

At the end of this course you will be an updated industry grade developer if you follow the instructions given in this course.

I will be making use of best practices as well so that you can get the idea of codebases that are being developed by MNCs.

The main motto of this course is to help the mid level software developer and job seekers. If you follow the course and practice the same, it will give you confidence to write more performant and clean code.

You can ask your questions on Twitter / Instagram.
Рекомендации по теме
Комментарии
Автор

Awesome tutorial, this was exactly what I was looking for! Also loved that you were actually showing some IDE tips while teaching.

nagarjunprasad
Автор

Awesome tutorial bro do you mind if you can share the working version of code in git as for me keeps throwing out error with the pom.

nk
Автор

very good quality material...Thank you sir..

pintunag
Автор

when i write source="emp" over the toDto method after compiling code an exception wiill appear Unknown property "emp" in result type Employee.EmployeeBuilder. Did you mean "null"?

hessenbenslima
Автор

Nicely explained..But from performance aspect I would prefer Dozer or Orika Mapper frameworks as it can handle data type conersion as well. I have went thru an article all about performance benchmarks with in mapper frameworks.

lakshmipratima
Автор

Hi, liked the tutorial. Thank you. I have 1 prepopulated hashmap<String, boolean>. need to populated target String field with the value based on key. want to use same method in qualifyByName with the hasmap key (String) as input parameter of the method to get the associated value . Could you please help. Thank you

sancharisingharoy
Автор

I try to the same but I add employee.birthdate and List<JobInformationDTO> jobInformations; How can I show jobInformations.startDate with Date Format(dd/MM/yyyy) ?

jefersonsilva-tvfm
Автор

Thanks for video! One question, how it works by you in EmployeeMapper with @InheritInverseConfiguration? I have compile error: 'Unknown property "emp" in result type Employee'?

georgel
Автор

I have a property in model as a String which accepts ", " separated value and in dto I want to as List.
I tried like this:
@Mapping(target="hobbies", resultType=List.class, qualifiedByName="convertStringToList")
public abstract PersonDto convertModelToDto(Person person);

@Named("convertStringToList")
public List<String> convertStringToList(Person person){
return Stream.of(person.getHobbies().split(", ")).map(String::toString).collect(Collectors.toList());
}

It does not work...any idea pls?

ravinderdasari
Автор

Hi i need some help in implementing mapstruct.. Could you please help

sweety
Автор

Why I am getting compilation error when using @Builder annotation
constructor EmployeeEntity in class cannot be applied to given types;

AhmadSayeed-plus
Автор

If i want to create junit test case for mapper interface then how i can do that 🤔

parthdeveloper
Автор

Employee and EmployeeDTO are same then why using both?

ankitsethia