Javarevisited
Learn Java, Programming, Spring, Hibernate throw tutorials, examples, and interview questions
Topics and Categories
core java
spring
hibernate
collections
multithreading
design patterns
interview questions
coding
data structure
OOP
java 8
books
About Me
Java Certifications
JDBC
jsp-servlet
JSON
SQL
Linux
Courses
online resources
jvm-internals
REST
Eclipse
jQuery
Java IO
Java XML
Home
View mobile version
Subscribe to:
Posts ( Atom )
Popular Posts
3 ways to solve java.lang.NoClassDefFoundError in Java J2EE
How to check if String contains another SubString in Java? contains() and indexOf() example
How to fix @Autowired - No qualifying bean of type found for dependency in Spring Boot? [Solved]
How to replace NULL with Empty String in SQL Server? ISNULL() vs COALESCE() Examples
Top 50 Java Programs from Coding Interviews
Top 10 Microservices Design Patterns and Principles - Examples
How to join three tables in SQL query – MySQL Example
Difference between row_number(), rank() and dense_rank() window functions in SQL
How to Fix java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/test [Solved]
3 Ways to Find Duplicate Elements in an Array - Java
Search This Blog
Interview Questions
core java interview question
(182)
interview questions
(113)
data structure and algorithm
(91)
Coding Interview Question
(80)
design patterns
(47)
spring interview questions
(43)
object oriented programming
(38)
SQL Interview Questions
(36)
thread interview questions
(30)
collections interview questions
(26)
database interview questions
(16)
servlet interview questions
(15)
hibernate interview questions
(7)
Programming interview question
(6)
Best of Javarevisited
How Spring MVC works internally?
How to design a vending machine in Java?
How HashMap works in Java?
Why String is Immutable in Java?
10 Articles Every Programmer Must Read
How to convert lambda expression to method reference in Java 8?
10 Tips to improve Programming Skill
10 OOP design principles programmer should know
How Synchronization works in Java?
10 tips to work fast in Linux
5 Books to improve Coding Skills
Java Tutorials
date and time tutorial
(25)
FIX protocol tutorial
(17)
Java Certification OCPJP SCJP
(35)
java collection tutorial
(89)
java IO tutorial
(30)
Java JSON tutorial
(19)
Java multithreading Tutorials
(62)
Java Programming Tutorials
(21)
Java xml tutorial
(17)
JDBC
(34)
jsp-servlet
(37)
online resources
(244)
Get New Blog Posts on Your Email
Get new posts by email:
Subscribe
Followers
Categories
courses
(447)
SQL
(77)
linux
(58)
database
(55)
Java Certification OCPJP SCJP
(35)
Eclipse
(33)
REST
(30)
JVM Internals
(26)
general
(24)
JQuery
(23)
Testing
(22)
Maven
(16)
Blog Archive
▼
2023
(848)
▼
September
(132)
Why Dependency Injection is a Best Practice?
15+ Spring Framework Quizzes for Java Programmers ...
How to print pyramid pattern of stars and numbers ...
How to Find Prime Factors of Integer Numbers in Ja...
How to Count number of Set bits or 1's of Integer ...
How to Add Two Integer Numbers without using Plus ...
How to Check if Integer Number is Power of Two in ...
Java Program to find factorial of number in Java -...
How to choose a Collection class in Java? Flowchar...
How to Check If Number is Even or Odd without usin...
Java Program to print Prime numbers in Java - Exa...
Java Program to Find Sum of Digits in a Number usi...
Difference in @RunWith vs @ExtendWith Annotations ...
Java Program to Reverse an Integer Number - Exampl...
3 ways to Find First Non Repeated Character in a S...
How to Count Number of Words in String ? Java Codi...
How to Reverse String in Java Using Iteration and ...
Top 20 String Algorithm Questions from Coding Inte...
How to check if two String are Anagram in Java - P...
How to delete a directory with files in Java - Exa...
How to resolve java.lang.ClassNotFoundException in...
9 Maven Concepts and Tools Every Java Developers S...
Where and How to download Spring Framework JAR fil...
Tibco Tutorial : Http Interface for Tibco RV Issue...
FIX protocol Tutorial: Futures and Options
What is Atomic Operation and Variable in Java? Ato...
Role based Access control using Spring Security an...
Top 12 Locking, Synchronization and Multithreading...
What is happens-before in Java Concurrency? An exa...
Top 5 Free Java Multithreading Courses to Learn in...
Top 15 Java Multithreading, Concurrency Interview ...
How to avoid deadlock in Java? Example Tutorial an...
Top 50 Java Thread and Concurrency Interview Quest...
Inter Thread Communication in Java using wait() an...
How to use Lock in Java? ReentrantLock Example Tut...
Difference between Executor, ExecutorService and E...
Difference between @Transactional and @EnableTrans...
What is CyclicBarrier in Java? How and When to use...
Is "Java Concurrency in Practice" still Valid in t...
Difference between atomic, volatile and synchroniz...
How Thread, Code and Data Works in Multi-threading...
How Volatile in Java works? Example of volatile ke...
Top 5 Java Multithreading and Concurrency Courses ...
How to create Thread Pool in Java using Executor F...
How to use Callable and Future in Java? Example Tu...
How to use wait, notify and notifyAll in Java - Pr...
How to use Lock and Condition variable in Java? Pr...
What is compound assignment operator +=, -=, *= an...
How to use SynchronousQueue in Java? Prouder Consu...
What is volatile modifier or field in Java? Exampl...
How to use Future and FutureTask in Java Concurren...
How to create thread safe Singleton in Java - Java...
How to Stop a Thread in Java? Code Example
What is ReentrantLock in Java? Difference between ...
The Ultimate Guide of Synchronization in Java - Ex...
How to use Counting Semaphore in Concurrent Java A...
Prefer TimeUnit Sleep over Thread.Sleep - Java Cod...
Why wait, notify, and notifyAll methods are called...
Difference between start and run method in Thread?...
How to find size, Default, Maximum and Minimum val...
What is CountDownLatch in Java - Concurrency Examp...
Difference between transient and volatile keyword ...
Avoid Mixing static and non static synchronized me...
How to Get & Print current Thread stack trace in J...
What is Race Condition in Java Multithreading? Exa...
How to check if a thread holds lock on a particula...
What is blocking methods in Java and how do deal w...
Producer Consumer Design Pattern with Blocking Que...
Difference between Executor Framework and Fork Joi...
Top 5 Difference Between Callable and Runnable Int...
Top 10 Eclipse Code Templates Java programmer shou...
ThreadLocal in Java - Example Program and Tutorial
Top 5 Books to Learn Concurrent Programming and Mu...
How to reverse an ArrayList in place in Java? Exam...
Difference between a List and Array in Java? Array...
16 Examples of ArrayList in Java - Tutorial
6 Ways to convert ArrayList to String in Java - Ex...
How to remove objects from ArrayList using Iterato...
How to empty an ArrayList in Java? clear() vs remo...
4 Ways to Loop or Iterate over ArrayList in Java? ...
How to convert a List to Set in Java? ArrayList to...
How to sort ArrayList in Natural and Custom Order ...
Top 25 Java ArrayList Interview Questions and Answ...
Difference between fail-safe vs fail-fast Iterator...
Why wait, notify and notifyAll is defined in Objec...
Difference between LinkedList and ArrayList in Java
Difference between Serializable and Externalizable...
How to check if a Number is Positive or Negative i...
What is Marker interface in Java and why required?...
Top 22 Spring Interview Questions Answers for Java...
Difference between ExecutorService.submit() and Ex...
How to Join Multiple Threads in Java? [Thread.join...
Difference between Java and C++ Constructor - Inte...
How to create Java Project in Eclipse using Git an...
Difference between Singleton Pattern vs Static Cla...
Difference between Dependency Injection and Factor...
Top 20 Spring and REST Interview Questions Answers...
Top 42 Programming Interview Questions Answers for...
How to design a Limit Order Book in Java? System D...
Top 30 Microsoft Interview Questions for Software ...
►
August
(75)
►
July
(54)
►
June
(10)
►
May
(286)
►
April
(206)
►
March
(51)
►
February
(18)
►
January
(16)
►
2022
(415)
►
December
(9)
►
November
(3)
►
September
(2)
►
August
(26)
►
July
(68)
►
June
(76)
►
May
(35)
►
April
(96)
►
March
(20)
►
February
(38)
►
January
(42)
►
2021
(714)
►
December
(118)
►
November
(68)
►
October
(28)
►
September
(48)
►
August
(169)
►
July
(253)
►
June
(2)
►
May
(2)
►
April
(8)
►
March
(11)
►
February
(4)
►
January
(3)
►
2020
(53)
►
December
(4)
►
November
(1)
►
October
(2)
►
September
(3)
►
August
(3)
►
July
(3)
►
June
(1)
►
May
(7)
►
April
(17)
►
March
(6)
►
February
(6)
►
2019
(16)
►
November
(6)
►
October
(4)
►
August
(1)
►
July
(2)
►
May
(1)
►
April
(1)
►
January
(1)
►
2018
(3)
►
July
(2)
►
June
(1)
►
2017
(22)
►
December
(1)
►
November
(1)
►
October
(6)
►
August
(4)
►
July
(2)
►
June
(2)
►
March
(2)
►
February
(1)
►
January
(3)
►
2012
(1)
►
January
(1)
References
Oracle's Java Tech Network
jQuery Documentation
Microsoft SQL Server Documentation
Java SE 8 API Documentation
Spring Documentation
Oracle's JAva Certification
Spring Security 5 Documentation
Pages
Privacy Policy
Terms and Conditions
Copyright by Javin Paul 2010-2023. Powered by
Blogger
.