SJ Programming Solutions
SJ Programming Solutions
  • 122
  • 706 419
How to connect SpringBoot Application to H2 database ? H2 DB Configuration in SpringBoot #springboot
#springbootprojects #springboot #springboottutorial
Hello All,
In this video we will se how to connect springboot application to h2 database
Please find below configuration which we need to add in application.properties file.
spring.application.name=H2DatabaseDemo
spring.datasource.url=jdbc:h2:file:/Users/shital/h2-db-data/mydatabase
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=pass123
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.h2.console.enabled=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
Thank you !
zhlédnutí: 82

Video

What is a switch case in Java? What is the switch statement? Java Switch Statement | session 6
zhlédnutí 46Před 28 dny
Hello All, In this video we have seen what is switch case in Java with example. Java Switch Statement Switch Statements in Java What is a switch case in Java? What is the switch statement? Which control statement is a switch case statement in Java? Which data type is used in switch case? How to use default in switch case in Java? Why use switch case instead of if-else? What is Switch Case in Ja...
What is the if-else condition in Java? What is the conditional statement for if-else? | Session 05
zhlédnutí 45Před 28 dny
#javascripttutorial #javatutorialforbeginners #javaprogramming #sjprogrammingsolutions In today's video we have covered below topics : Conditional statements in Java ? if-else else if nested if else What is the conditional statement for if-else? What are the 4 conditional statements used in Java? What is the if-else condition in Java? What is a control statement in Java? How to write for condit...
What are operators in Java? | Java Tutorials for Beginners | Session #4 #javatutorial
zhlédnutí 49Před měsícem
Hello All, In this video we will see below topics : What are operators in Java ? Arithmetic Operators Unary Operators Equality and Relational Operators Conditional Operators If you like the video then please share with your friends and don't forget to subscribe the channle Also comment your thoughts on this video if you need any improvements then you can comment it and will take that forward. T...
Variables in Java | Data Types and Types Casting in Java | Implicit and Explicit Casting | Session 3
zhlédnutí 25Před měsícem
Hello All, In todays session we have covered below topics : 1. Variables 2. Rules of variable name 3. Data Types 4. Casting #javatutorial #javatutorialforbeginners #javaprogramming
Why Java | Features Of Java | Write your First Java Program | Intrnal Flow of execution | Session 2
zhlédnutí 145Před měsícem
Hello All, In this video we have covered below topics : 1. History Of the Java 2. Why Java ? 3. Features Of the Java 4. How to write first Java Program ? 5. How to compile and run the code ? 6. Internal execution of the code. #javatutorialforbeginners #javaprogramming #javatutorial
Java Essentials: Introduction & Syllabus Overview | Beginner Java Tutorials Session 1 #JavaTutorial
zhlédnutí 94Před měsícem
Hello Everyone! Are you ready to master Java programming from the ground up? Welcome to my comprehensive Java tutorial series, designed to transform you from a beginner to a confident Java developer! In this series, we'll dive deep into every Java topic, breaking down complex concepts into easy-to-understand lessons. You'll not only learn the theory but also see practical implementations, makin...
Java 8 coding interview questions - Employee Management System | Real time Interview Questions #java
zhlédnutí 240Před měsícem
#java8 #javainterviewquestionsanswers #streamapi Hello All, In this video we will see top 10 commonly asked stream API real time interview questions and there answers. java 8 coding interview questions Java 8 Interview Sample Coding Questions How to prepare for a Java 8 interview? Java Stream API Interview Questions and Answers Java 8 Stream API Commonly Asked Interview Questions Thank you ! #i...
Java 8 coding interview questions - Employee Management System | Real time Interview Questions #java
zhlédnutí 217Před měsícem
#javainterviewquestionsanswers #javainterview #java8 #javastreams Hello All, In this video we will see top 10 Java interview questions on stream API topic. Question 1 : Print the employee having the highest salary . Solution: Employee employee = empList.stream(). collect(Collectors.maxBy(Comparator.comparingDouble(Employee::getSalary))).get(); System.out.println(employee); Question 2: How many ...
Banking Application | SpringBoot REST API CRUD Operations using Spring Data JPA #springboottutorial
zhlédnutí 11KPřed 4 měsíci
#springbootprojects #sptingBoot #project In this video we will create Bank Management application using SpringBoot and Spring Data JPA and MySql as database. This application will perform below operations . Create Bank Account Get the Bank Account details by Account number Get All the Bank Account details Withdraw the money from account Deposit the money in account Delete or close the account I...
Java 8 stream coding interview questions | Find Average salary of the employee | #java8stream #java
zhlédnutí 338Před 5 měsíci
#javainterviewquestions #java8 #stream #streamapi #interviewquestions #interview In this video we will see how to find average salary or average age of employee from employee list. If you find this video usefull please share with your friends and don't forget to subscribe the channle . You have watch below videos related to stream API coding questions. How to sort Student based on totalMarks ? ...
How to find highest salary employee using Java 8 stream API | #java8stream #interviewquestions
zhlédnutí 488Před 5 měsíci
How to find the employee which is having highest salary in the organization ? Print the employee which is having maximum salary using java8 stream API? Java8 stream API sorted method Hello All, In this video we will see how to find highest salary employee in the organization using java 8 stream API? Employee employee = empList.stream().sorted(Comparator.comparing(Employee::getSalary).reversed()...
Frequenty Asked Interview questions on Java8 stream API | How to sort Student based on totalMarks ?
zhlédnutí 240Před 5 měsíci
#frequentlyaskedquestion #java8stream #java8 #comparator #javainterviewquestions #interviewquestions #javatutorial How to sort the students based on totalMarks in descending order using Java 8 stream API ? What is stream API ? How to sort the data in java8 stream API ? What is Comparator.comparing() method in java ? Thank you !
What is @Autowired Annotation in Spring and SpringBoot ? What is the use of @autowired annotation?
zhlédnutí 306Před 6 měsíci
#springboottutorial #springboot #interviewquestions #annotations Hello All, In this video we are going to see what is @Autowured annotation with example. Also you can watch below videos . 1. What is the @component annotation in Spring and SpringBoot ? What is use of @component in Spring? czcams.com/video/xWHTzr7qadc/video.html 2. Global Exception handling in Spring Boot | Exception Handler | Re...
What is the @component annotation in Spring and SpringBoot ? What is use of @component in Spring?
zhlédnutí 301Před 6 měsíci
What is the @component annotation in Spring and SpringBoot ? What is use of @component in Spring?
🔴 Global Exception handling in Spring Boot | Exception Handler | RestControllerAdvice #springboot 🔥🔥
zhlédnutí 2,1KPřed 6 měsíci
🔴 Global Exception handling in Spring Boot | Exception Handler | RestControllerAdvice #springboot 🔥🔥
What is ResponseEntity in Spring Boot ?
zhlédnutí 4KPřed 10 měsíci
What is ResponseEntity in Spring Boot ?
SpringBoot REST API CRUD Operations using Spring Data JPA | Postman | MySql #springboottutorial
zhlédnutí 58KPřed 10 měsíci
SpringBoot REST API CRUD Operations using Spring Data JPA | Postman | MySql #springboottutorial
✅ How to Crack your next IT Interview ? How to Prepare for the college Placements in 2023 | IT Job 🔥
zhlédnutí 239Před 10 měsíci
✅ How to Crack your next IT Interview ? How to Prepare for the college Placements in 2023 | IT Job 🔥
🔴 Spring Data JPA CRUD Operations with Spring Boot | JpaRepository | CRUDRepository #springboot 🔥🔥
zhlédnutí 2,3KPřed 11 měsíci
🔴 Spring Data JPA CRUD Operations with Spring Boot | JpaRepository | CRUDRepository #springboot 🔥🔥
#springboot How to connect SpringBoot application with MySQL using Spring Data JPA | Spring Data JPA
zhlédnutí 2,8KPřed 11 měsíci
#springboot How to connect SpringBoot application with MySQL using Spring Data JPA | Spring Data JPA
What is runnable interface in Java? how to create thread using runnable interface in Java ?
zhlédnutí 306Před rokem
What is runnable interface in Java? how to create thread using runnable interface in Java ?
How to create Thread in Java by extending Thread class ? #multithreadinginjava #javatutorial
zhlédnutí 453Před rokem
How to create Thread in Java by extending Thread class ? #multithreadinginjava #javatutorial
What is the difference between HashMap LinkedHashMap and TreeMap?
zhlédnutí 515Před rokem
What is the difference between HashMap LinkedHashMap and TreeMap?
Super and this keyword in java | What is this and super in java ? Java tutorials #javatutorial .
zhlédnutí 199Před rokem
Super and this keyword in java | What is this and super in java ? Java tutorials #javatutorial .
Arrays in Java | Control Statements | if else & Switch Statements| Scanner Class #javatutorial
zhlédnutí 390Před rokem
Arrays in Java | Control Statements | if else & Switch Statements| Scanner Class #javatutorial
How to find Duplicate Elements from an array in java using HashSet and HashMap | #codinginterview
zhlédnutí 217Před rokem
How to find Duplicate Elements from an array in java using HashSet and HashMap | #codinginterview
What is Armstrong Number ? | Check whether given number is Armstrong Number or Not ? #javacoding
zhlédnutí 133Před rokem
What is Armstrong Number ? | Check whether given number is Armstrong Number or Not ? #javacoding
Tricky coding interview questions on java | Interview Preparation | What will be the output ? Part 3
zhlédnutí 278Před rokem
Tricky coding interview questions on java | Interview Preparation | What will be the output ? Part 3
Tricky coding interview questions on java | Interview Preparation | What will be the output ? Part 2
zhlédnutí 300Před rokem
Tricky coding interview questions on java | Interview Preparation | What will be the output ? Part 2

Komentáře