SlideShare a Scribd company logo
Santosh Kumar Kar,
Lead Software Engineer, EPAM
skkar.2k2@gmail.com
Before we start
A task for you – time 15 minutes
Develop a web application which reads Employee information from
MySQL DB and print on the screen. You need to use Spring and
Hibenate(JPA). It should run in any web container.
List out the challenges you have faced while setting up the env.
1) Download and set up a server (e.g. Tomcat)
2) Download and install a DB
3) Download required Spring jars
4) Download Hibernate jar compatible with the Spring version
5) Download jar for MySQL driver
6) Setting up web.xml to use spring MVC
7) Anything I left ???
Before we start
Why Spring Boot
• Provides a radically faster and widely accessible ‘getting started’
experience for all Spring development
• No clumsy XML Configuration by developers
• Provide opinionated ‘starter’ POMs to simplify your Maven
configuration
• Uses project management tool such as MAVEN or GRADLE
• Helps fast development and production ready code
• Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR
files)
• In memory DB
Documentation
http://docs.spring.io/spring-boot/docs/current/reference/html/index.html
System Requirement Spring Boot 1.4.2.RELEASE
• Apache Maven
• Java 7 +
http://start.spring.io – a good starting point
Folder Structure to be followed
Understanding pom.xml
Build runnable jar
First Java Program for spring boot
Running the application
> mvn spring-boot:run
Devtools
• Automatic Restart
• LiveReload
• Remote Debug Tunneling
• Remote Update and Restart
Details at:
http://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html
Spring Tool Suite (sts)
Download https://spring.io/tools/sts/all
Spring Web & MVC
application.properties
pom.xml
Without application.properties
Runnable war
1) In Main java file:
1.1 extend : org.springframework.boot.web.support.SpringBootServletInitializer
1.2 override the method:
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(MyApplication.class);
}
1.3 No need of main() method.
2) In pom.xml
1.1 Change the packing to war as:
<packaging>war</packaging>
3) Use command: mvn clean package
4) In target, rename the war<context root> as you want, deploy in tomcat and access with <context root>/<request mapping>
MySQL & jdbc
pom.xml
spring.datasource.jndi-name=java:jboss/datasources/customers - For JNDI Datasource
MySQL & jdbc
JPA in Spring Boot
JPA in Spring Boot
JPA in Spring Boot
JPA in Spring Boot
Things to learn:
Only interface is enough which inherits to CrudRepository. The implementation will be provided by spring.
To know the other inherited methods, please go through the CrudRepository API.
JPA in Spring Boot
Code
https://github.com/santoshkar/SpringBoot.git
The code can be downloaded from:
Send to skkar.2k2@gmail.com
Questions ???

More Related Content

What's hot (20)

PPTX
Spring boot - an introduction
Jonathan Holloway
 
PPTX
Spring boot
sdeeg
 
PPTX
Spring data jpa
Jeevesh Pandey
 
PPTX
Spring boot
Pradeep Shanmugam
 
PDF
Spring boot introduction
Rasheed Waraich
 
PDF
Microservices with Java, Spring Boot and Spring Cloud
Eberhard Wolff
 
PDF
Spring Boot
Jaran Flaath
 
PPTX
Springboot Microservices
NexThoughts Technologies
 
PDF
Microservice With Spring Boot and Spring Cloud
Eberhard Wolff
 
PPT
Spring Core
Pushan Bhattacharya
 
PPTX
Spring Boot
Jiayun Zhou
 
PPTX
Spring Framework
tola99
 
PPT
Maven Introduction
Sandeep Chawla
 
PDF
Spring Boot
Pei-Tang Huang
 
PPTX
Introduction to Spring Boot
Purbarun Chakrabarti
 
PDF
Spring boot
Bhagwat Kumar
 
PDF
Introduction to Spring Boot!
Jakub Kubrynski
 
PDF
Spring core module
Raj Tomar
 
PPTX
An Introduction To REST API
Aniruddh Bhilvare
 
PDF
Spring Framework
NexThoughts Technologies
 
Spring boot - an introduction
Jonathan Holloway
 
Spring boot
sdeeg
 
Spring data jpa
Jeevesh Pandey
 
Spring boot
Pradeep Shanmugam
 
Spring boot introduction
Rasheed Waraich
 
Microservices with Java, Spring Boot and Spring Cloud
Eberhard Wolff
 
Spring Boot
Jaran Flaath
 
Springboot Microservices
NexThoughts Technologies
 
Microservice With Spring Boot and Spring Cloud
Eberhard Wolff
 
Spring Core
Pushan Bhattacharya
 
Spring Boot
Jiayun Zhou
 
Spring Framework
tola99
 
Maven Introduction
Sandeep Chawla
 
Spring Boot
Pei-Tang Huang
 
Introduction to Spring Boot
Purbarun Chakrabarti
 
Spring boot
Bhagwat Kumar
 
Introduction to Spring Boot!
Jakub Kubrynski
 
Spring core module
Raj Tomar
 
An Introduction To REST API
Aniruddh Bhilvare
 
Spring Framework
NexThoughts Technologies
 

Viewers also liked (19)

PDF
SpringMVC
Akio Katayama
 
PPTX
Skillwise-Spring framework 1
Skillwise Group
 
PDF
Spring Data Jpa
Ivan Queiroz
 
PDF
REST API Best (Recommended) Practices
Rasheed Waraich
 
PDF
Design & Development of Web Applications using SpringMVC
Naresh Chintalcheru
 
PPTX
Spring User Group Thymeleaf 08-21-2013
Justin Munn
 
PPT
DSpace UI Prototype Challenge: Spring Boot + Thymeleaf
Tim Donohue
 
PDF
Broadleaf Presents Thymeleaf
Broadleaf Commerce
 
PDF
Thymeleaf, will it blend?
Jasha Joachimsthal
 
PDF
Introducing thymeleaf
eiryu
 
PDF
Gradle - Build System
Jeevesh Pandey
 
PDF
Thymeleaf Introduction
Anthony Chen
 
PDF
Java™ in Web 2.0
elliando dias
 
PDF
Modern Java web applications with Spring Boot and Thymeleaf
LAY Leangsros
 
PDF
Spring IO '15 - Developing microservices, Spring Boot or Grails?
Fátima Casaú Pérez
 
PPTX
Introduction to jQuery
Collaboration Technologies
 
PDF
Spring I/O 2012: Natural Templating in Spring MVC with Thymeleaf
Thymeleaf
 
PPTX
Introduction to JPA Framework
Collaboration Technologies
 
PDF
Introduction to thymeleaf
NexThoughts Technologies
 
SpringMVC
Akio Katayama
 
Skillwise-Spring framework 1
Skillwise Group
 
Spring Data Jpa
Ivan Queiroz
 
REST API Best (Recommended) Practices
Rasheed Waraich
 
Design & Development of Web Applications using SpringMVC
Naresh Chintalcheru
 
Spring User Group Thymeleaf 08-21-2013
Justin Munn
 
DSpace UI Prototype Challenge: Spring Boot + Thymeleaf
Tim Donohue
 
Broadleaf Presents Thymeleaf
Broadleaf Commerce
 
Thymeleaf, will it blend?
Jasha Joachimsthal
 
Introducing thymeleaf
eiryu
 
Gradle - Build System
Jeevesh Pandey
 
Thymeleaf Introduction
Anthony Chen
 
Java™ in Web 2.0
elliando dias
 
Modern Java web applications with Spring Boot and Thymeleaf
LAY Leangsros
 
Spring IO '15 - Developing microservices, Spring Boot or Grails?
Fátima Casaú Pérez
 
Introduction to jQuery
Collaboration Technologies
 
Spring I/O 2012: Natural Templating in Spring MVC with Thymeleaf
Thymeleaf
 
Introduction to JPA Framework
Collaboration Technologies
 
Introduction to thymeleaf
NexThoughts Technologies
 
Ad

Similar to Introduction to spring boot (20)

PDF
Spring Boot Interview Questions PDF By ScholarHat
Scholarhat
 
DOCX
Spring competitive tests
SkillPracticalEdTech
 
PDF
Building a Spring Boot Application - Ask the Audience!
🎤 Hanno Embregts 🎸
 
DOCX
How to use_cucumber_rest-assured_api_framework
Harshad Ingle
 
PPTX
Spring data jpa are used to develop spring applications
michaelaaron25322
 
PPTX
Станислав Сидоренко «DeviceHive Java Server – миграция на Spring Boot»
DataArt
 
PDF
Spring Live Sample Chapter
Syed Shahul
 
PDF
Building a Spring Boot Application - Ask the Audience! (from JVMCon 2018)
🎤 Hanno Embregts 🎸
 
DOCX
Spring competitive tests
SkillPracticalEdTech
 
PDF
Building a Spring Boot Application - Ask the Audience! (from JavaLand 2017)
🎤 Hanno Embregts 🎸
 
PPTX
Bootify your spring application
Jimmy Lu
 
PDF
Spring Boot & Actuators
VMware Tanzu
 
PDF
Spring Boot Whirlwind Tour
VMware Tanzu
 
PPTX
Maven
Shraddha
 
PPT
Spring hibernate tutorial
Rohit Jagtap
 
PPT
Maven: Managing Software Projects for Repeatable Results
Steve Keener
 
DOCX
Spring boot competitive tests
SkillPracticalEdTech
 
DOCX
Spring boot competitive tests
SkillPracticalEdTech
 
PDF
Spring boot jpa
Hamid Ghorbani
 
Spring Boot Interview Questions PDF By ScholarHat
Scholarhat
 
Spring competitive tests
SkillPracticalEdTech
 
Building a Spring Boot Application - Ask the Audience!
🎤 Hanno Embregts 🎸
 
How to use_cucumber_rest-assured_api_framework
Harshad Ingle
 
Spring data jpa are used to develop spring applications
michaelaaron25322
 
Станислав Сидоренко «DeviceHive Java Server – миграция на Spring Boot»
DataArt
 
Spring Live Sample Chapter
Syed Shahul
 
Building a Spring Boot Application - Ask the Audience! (from JVMCon 2018)
🎤 Hanno Embregts 🎸
 
Spring competitive tests
SkillPracticalEdTech
 
Building a Spring Boot Application - Ask the Audience! (from JavaLand 2017)
🎤 Hanno Embregts 🎸
 
Bootify your spring application
Jimmy Lu
 
Spring Boot & Actuators
VMware Tanzu
 
Spring Boot Whirlwind Tour
VMware Tanzu
 
Maven
Shraddha
 
Spring hibernate tutorial
Rohit Jagtap
 
Maven: Managing Software Projects for Repeatable Results
Steve Keener
 
Spring boot competitive tests
SkillPracticalEdTech
 
Spring boot competitive tests
SkillPracticalEdTech
 
Spring boot jpa
Hamid Ghorbani
 
Ad

More from Santosh Kumar Kar (11)

PPTX
Smart home arduino
Santosh Kumar Kar
 
PPTX
Operating electrical devices with PIR sensor. No coding, No controller
Santosh Kumar Kar
 
PPTX
Temperature sensor with raspberry pi
Santosh Kumar Kar
 
PPTX
Pir motion sensor with raspberry pi
Santosh Kumar Kar
 
PPTX
Angular js for Beginnners
Santosh Kumar Kar
 
PPTX
Raspberry pi complete setup
Santosh Kumar Kar
 
PPTX
Spring transaction part4
Santosh Kumar Kar
 
PPTX
Spring & hibernate
Santosh Kumar Kar
 
PPTX
Spring database - part2
Santosh Kumar Kar
 
PPTX
Springs
Santosh Kumar Kar
 
PPTX
Writing simple web services in java using eclipse editor
Santosh Kumar Kar
 
Smart home arduino
Santosh Kumar Kar
 
Operating electrical devices with PIR sensor. No coding, No controller
Santosh Kumar Kar
 
Temperature sensor with raspberry pi
Santosh Kumar Kar
 
Pir motion sensor with raspberry pi
Santosh Kumar Kar
 
Angular js for Beginnners
Santosh Kumar Kar
 
Raspberry pi complete setup
Santosh Kumar Kar
 
Spring transaction part4
Santosh Kumar Kar
 
Spring & hibernate
Santosh Kumar Kar
 
Spring database - part2
Santosh Kumar Kar
 
Writing simple web services in java using eclipse editor
Santosh Kumar Kar
 

Recently uploaded (20)

PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
DOCX
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
PPTX
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
PPTX
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PDF
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
PDF
My Thoughts On Q&A- A Novel By Vikas Swarup
Niharika
 
PPTX
Top 10 AI Tools, Like ChatGPT. You Must Learn In 2025
Digilearnings
 
PPTX
Basics and rules of probability with real-life uses
ravatkaran694
 
PDF
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
PPTX
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
PDF
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
PPTX
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
PDF
John Keats introduction and list of his important works
vatsalacpr
 
PPTX
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
PPTX
Introduction to Probability(basic) .pptx
purohitanuj034
 
PPTX
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PPTX
LDP-2 UNIT 4 Presentation for practical.pptx
abhaypanchal2525
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
My Thoughts On Q&A- A Novel By Vikas Swarup
Niharika
 
Top 10 AI Tools, Like ChatGPT. You Must Learn In 2025
Digilearnings
 
Basics and rules of probability with real-life uses
ravatkaran694
 
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
John Keats introduction and list of his important works
vatsalacpr
 
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
Introduction to Probability(basic) .pptx
purohitanuj034
 
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
LDP-2 UNIT 4 Presentation for practical.pptx
abhaypanchal2525
 

Introduction to spring boot