Training - JPA JPAIntroduction to JPAJPA stands for JAVA PERSISTENCE API. JPA is an object relational mapping API that makes it easier to Extract data from relational databases and put into objects Extract data f 2021-08-09 Training Hibernate Training
JavaScript - DOM and Events Fundamentals DOM and Events Fundamentals DOM !== JSDOM Methods and Properties for DOM Manipulations ARE NOT PART OF JavaScript! WEB APIs can INTERACT WITH JS! Guess My Number Project1234567891011121314151617181920 2021-08-06 JavaScript JavaScript
JavaScript Fundamentals - Part 2 JavaScript Fundamentals - Part 2Activate Strict ModeStrict mode creates visible errors in developer console, where in other situations without strict mode the code will fail silently. Function Declar 2021-08-01 JavaScript JavaScript
JavaScript Fundamentals - Part 1 JavaScript Fundamentals - Part 1let, var & const let - block scoped var - function scoped Strings and Template LiteralsUse back-ticks always 1const str = `I am ${firstName}`; Types C 2021-07-27 JavaScript JavaScript
SpringBoot Spring InitializerEnter Spring Initializer and generate a new SpringBoot Project. Import project into IDE. SpringBoot Solution Make it easier to get started with Spring development Minimize the amou 2021-02-22 Spring & Hibernate SpringBoot
Spring REST Java JSON Data BindingData binding is the process of converting the JSON data to a Java POJO. Also known as: Mapping, Serialization/Deserialization Jackson Data BindingSpring uses the Jackson Project 2021-02-17 Spring & Hibernate SpringREST
AOP:Aspect-Oriented-Programming Overview AOP OverviewAOP, at its core, lets you implement individual concerns in a loosely coupled fashion, and combine these implementations to form the final system. Indeed, AOP creates systems using loosely 2021-02-08 Spring & Hibernate AOP
AOP:Add Logging to Spring MVC Project AOP: Add Logging to Spring MVC ProjectAdd AspectJ JAR FilesAdd AspectJ JAR file to web/WEB-INF/lib/aspectjweaver-1.8.13.jar Enable AspectJ Auto ProxyAdd AspectJ Auto Proxy to spring-mvc-crud-demo-ser 2021-02-08 Spring & Hibernate SpringMVC AOP
Hibernate Advanced Mappings Hibernate Advanced Mappings@OneToOneEntity Lifecycle Detach - not associated with a Hibernate session Merge Persist Refresh - sync object with db Cascade Type PERSIST - Related entity will also be 2021-02-08 Spring & Hibernate Hibernate
Spring MVC and Hibernate Project Spring MVC and Hibernate ProjectOverview Browser makes a request to the customer controller. Customer Controller makes use of the Customer DAO. The DAO access the database using the Hibernate API. T 2021-02-08 Spring & Hibernate Hibernate SpringMVC