My Notes
Update database with Fluent API approach
Update database with Fluent API approach 0 Comments Written by Buddhi2022-04-06 public Book book(Long bookId, Book book) { return bookRepository.findById(bookId). map(foundBook -> { foundBook.setName(book.getName());…
Thread Communication in Java
Update database with Fluent API approach 0 Comments Written by Buddhi2022-04-06Interthread communication in Java package org.example; public class ThreadCommunication { private static final int DATA_SIZE = 1000; public static void main(String[] args) { //common…
Dependency Injection Summary
Update database with Fluent API approach 0 Comments Written by Buddhi2022-04-06Summary of dependency injection in Spring Boot. All the necessary dependencies are handed over to the object by spring. It frees the object from resolving the dependencies. It greatly…
Spring Annotations and Component Scanning
Update database with Fluent API approach 0 Comments Written by Buddhi2022-04-06Best practices for defining components and scanning them Annotate the class by including the exact place where to scan for components with…
Various description of Big O – Time complexity algorithms
Update database with Fluent API approach 0 Comments Written by Buddhi2022-04-06Understanding the time complexity of Big O and log. O(log N) means time goes up linearly while the n goes up exponentially. So if it takes 1 second to compute 10 elements, it will take 2…
Let’s Build Something
Have an Idea? Send me a message.
Buddhi Bal Thapa
Professional software developer with the ability to work on both the front-end and back-end.