SlideShare a Scribd company logo
Spring Boot
2016-12-22
onozaty
Spring Boot
•
• Play Framework
• Spring
• Play Scala
Scala
Spring Boot
• Spring Framework
• Spring Framework
• Tomcat Jetty
jar(Uber JAR)
• Maven Gradle
• 

( )
Spring Initializr
• Spring Boot
WEB
Spring Initializr
• Project
( Maven Gradle )
• STS(Spring Tool Suite)
Spring Initializr
•
• http://start.spring.io/
Spring Initializr
Spring Initializr
Spring Initializr
Spring Initializr
•
•
Hello World!
Dependencies Web Project
Hello World!
Eclipse “Hello World!!”
package com.example;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HelloController {
@RequestMapping("/")
@ResponseBody
public String hello(){
return "Hello World!!";
}
}
Hello World!
Tomcat
• Spring Boot
Spring
• Web Spring MVC
•
• Spring Boot
•
•
• 

https://github.com/spring-projects/spring-boot/tree/
master/spring-boot-samples
AutoConfigure
• Spring Boot AutoConfigure
•
AutoConfigure
AutoConfigure
• Flyway
Flyway
• H2
datasource H2
DB
DB
•
• Spring JDBC
• Spring DATA JPA
• MyBatis Spring
Spring JDBC
• spring-boot-starter-jdbc
• JDBC
(Apache commons DbUtils )
Spring JDBC
@Repository
public class CustomerRepository {
@Autowired
private NamedParameterJdbcTemplate jdbcTemplate;
public List<Customer> findAll() {
return jdbcTemplate.query(
"SELECT * FROM customers ORDER BY id",
new BeanPropertyRowMapper<Customer>(Customer.class));
}
public void update(Customer customer) {
jdbcTemplate.update(
"UPDATE customers SET name = :name, address = :address WHERE id = :id",
new BeanPropertySqlParameterSource(customer));
}
}
Spring DATA JPA
• spring-boot-starter-data-jpa
• JPA
• JPA EntityManager Interface
Spring DATA JPA
@Entity
@Table(name = "customers")
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Customer {
@Id
@GeneratedValue
private Integer id;
private String name;
private String address;
}
Spring DATA JPA
@Service
public class CustomerService {
@Autowired
private CustomerRepository customerRepository;
public List<Customer> findAll() {
return customerRepository.findAll();
}
public List<Customer> findByName(String name) {
return customerRepository.findByName(name);
}
public Customer create(Customer customer) {
return customerRepository.save(customer);
}
@Repository
public interface CustomerRepository extends JpaRepository<Customer, Integer> {
public List<Customer> findByName(String name);
}
REST API
• CRUD API
• RDBMS H2
• Spring DATA JPA
• Flyway DB
• Swagger
•
• https://github.com/onozaty/spring-boot-sandbox/tree/
master/spring-boot-demo-20161222
• Spring
•

More Related Content

PDF
WebSocketでカメラの映像を共有してみた
PDF
Bootiful Development with Spring Boot and React - RWX 2017
PDF
Spring Boot 1.3 News #渋谷Java
PDF
Web App Security for Java Developers - UberConf 2021
PDF
Front Ends for Back End Developers - Spring I/O 2017
PDF
Ionic adventures - Hybrid Mobile App Development rocks
PDF
Red Hat and Oracle: Delivering on the Promise of Interoperability in Java EE 7
PDF
Serverless 프레임워크로 Nuxt 앱 배포하기
WebSocketでカメラの映像を共有してみた
Bootiful Development with Spring Boot and React - RWX 2017
Spring Boot 1.3 News #渋谷Java
Web App Security for Java Developers - UberConf 2021
Front Ends for Back End Developers - Spring I/O 2017
Ionic adventures - Hybrid Mobile App Development rocks
Red Hat and Oracle: Delivering on the Promise of Interoperability in Java EE 7
Serverless 프레임워크로 Nuxt 앱 배포하기

What's hot (20)

PDF
手把手教你如何串接 Log 到各種網路服務
PDF
Going Node At Netflix
PDF
Spring Booted, But... @JCConf 16', Taiwan
PDF
Chefとかプロビジョニングまわり
PDF
#jjug_ccc #ccc_gh5 What's new in Spring Framework 4.3 / Boot 1.4 + Pivotal's ...
PDF
第一次用 Vue.js 就愛上 [改]
PDF
Avoiding Common Pitfalls in Ember.js
PDF
Cool like a Frontend Developer: Grunt, RequireJS, Bower and other Tools
PDF
遠端團隊專案建立與管理 remote team management 2016
PDF
introduction to Vue.js 3
PDF
Spark IT 2011 - Developing RESTful Web services with JAX-RS
PDF
JAX-RS JavaOne Hyderabad, India 2011
PDF
Java REST API Framework Comparison - UberConf 2021
PDF
Testing Mobile JavaScript
PDF
From Spring Boot 2.2 to Spring Boot 2.3 #jsug
PDF
Ionic2
PDF
Service Worker - Reliability bits
PDF
Get Hip with JHipster - Denver JUG 2015
PPT
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
PDF
React native in the wild @ Codemotion 2016 in Rome
手把手教你如何串接 Log 到各種網路服務
Going Node At Netflix
Spring Booted, But... @JCConf 16', Taiwan
Chefとかプロビジョニングまわり
#jjug_ccc #ccc_gh5 What's new in Spring Framework 4.3 / Boot 1.4 + Pivotal's ...
第一次用 Vue.js 就愛上 [改]
Avoiding Common Pitfalls in Ember.js
Cool like a Frontend Developer: Grunt, RequireJS, Bower and other Tools
遠端團隊專案建立與管理 remote team management 2016
introduction to Vue.js 3
Spark IT 2011 - Developing RESTful Web services with JAX-RS
JAX-RS JavaOne Hyderabad, India 2011
Java REST API Framework Comparison - UberConf 2021
Testing Mobile JavaScript
From Spring Boot 2.2 to Spring Boot 2.3 #jsug
Ionic2
Service Worker - Reliability bits
Get Hip with JHipster - Denver JUG 2015
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
React native in the wild @ Codemotion 2016 in Rome
Ad

Similar to Spring Bootを触ってみた (20)

PDF
Connecting Connect with Spring Boot
PPTX
Spring boot Introduction
KEY
JavaOne 2011 - JVM Bytecode for Dummies
PPTX
External JavaScript Widget Development Best Practices
PDF
Rapid application development with spring roo j-fall 2010 - baris dere
PPTX
Java scriptwidgetdevelopmentjstanbul2012
PDF
Creating Modular Test-Driven SPAs with Spring and AngularJS
PDF
Comparing Native Java REST API Frameworks - Seattle JUG 2022
PDF
Solid and Sustainable Development in Scala
PDF
Modern Web Framework : Play framework
PPTX
External JavaScript Widget Development Best Practices (updated) (v.1.1)
PDF
Introduction to Flask Micro Framework
PDF
Solid And Sustainable Development in Scala
PPTX
Come Sail Away With Me (you guys): Node.js MVC Web API's Using Sails.js
PPTX
Setting up a free open source java e-commerce website
PDF
GitBucket: The perfect Github clone by Scala
KEY
Google App Engine Java, Groovy and Gaelyk
KEY
About Clack
PDF
Introduction to Spring Boot!
PDF
Afstuderen bij Sogeti Java
Connecting Connect with Spring Boot
Spring boot Introduction
JavaOne 2011 - JVM Bytecode for Dummies
External JavaScript Widget Development Best Practices
Rapid application development with spring roo j-fall 2010 - baris dere
Java scriptwidgetdevelopmentjstanbul2012
Creating Modular Test-Driven SPAs with Spring and AngularJS
Comparing Native Java REST API Frameworks - Seattle JUG 2022
Solid and Sustainable Development in Scala
Modern Web Framework : Play framework
External JavaScript Widget Development Best Practices (updated) (v.1.1)
Introduction to Flask Micro Framework
Solid And Sustainable Development in Scala
Come Sail Away With Me (you guys): Node.js MVC Web API's Using Sails.js
Setting up a free open source java e-commerce website
GitBucket: The perfect Github clone by Scala
Google App Engine Java, Groovy and Gaelyk
About Clack
Introduction to Spring Boot!
Afstuderen bij Sogeti Java
Ad

More from onozaty (20)

PDF
リモートワーク中に買って良かったものベスト3
PDF
情報を表現するときのポイント
PDF
チームで開発するための環境を整える
PDF
Selenium入門(2023年版)
PDF
40歳過ぎてもエンジニアでいるためにやっていること
PDF
Java8から17へ
PDF
今からでも遅くないDBマイグレーション - Flyway と SchemaSpy の紹介 -
PDF
Redmine issue assign notice plugin の紹介
PDF
最近作ったもの
PDF
Selenium入門
PDF
Redmineの画面をあなた好みにカスタマイズ - View customize pluginの紹介 - Redmine Japan 2020
PDF
「伝わるチケット」の書き方
PDF
View customize plugin for Redmineの紹介 (2019年版)
PDF
View customize1.2.0の紹介
PDF
Lombokの紹介
PDF
30歳過ぎてもエンジニアでいるためにやったこと
PDF
View customize pluginを使いこなす
PDF
View Customize Pluginで出来ること
PDF
技術書のススメ
PDF
課題管理と情報共有のためのツール群
リモートワーク中に買って良かったものベスト3
情報を表現するときのポイント
チームで開発するための環境を整える
Selenium入門(2023年版)
40歳過ぎてもエンジニアでいるためにやっていること
Java8から17へ
今からでも遅くないDBマイグレーション - Flyway と SchemaSpy の紹介 -
Redmine issue assign notice plugin の紹介
最近作ったもの
Selenium入門
Redmineの画面をあなた好みにカスタマイズ - View customize pluginの紹介 - Redmine Japan 2020
「伝わるチケット」の書き方
View customize plugin for Redmineの紹介 (2019年版)
View customize1.2.0の紹介
Lombokの紹介
30歳過ぎてもエンジニアでいるためにやったこと
View customize pluginを使いこなす
View Customize Pluginで出来ること
技術書のススメ
課題管理と情報共有のためのツール群

Recently uploaded (20)

PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
sap open course for s4hana steps from ECC to s4
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Big Data Technologies - Introduction.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Encapsulation_ Review paper, used for researhc scholars
“AI and Expert System Decision Support & Business Intelligence Systems”
Per capita expenditure prediction using model stacking based on satellite ima...
Building Integrated photovoltaic BIPV_UPV.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
sap open course for s4hana steps from ECC to s4
NewMind AI Weekly Chronicles - August'25 Week I
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Understanding_Digital_Forensics_Presentation.pptx
Unlocking AI with Model Context Protocol (MCP)
Big Data Technologies - Introduction.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
MYSQL Presentation for SQL database connectivity
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf
The AUB Centre for AI in Media Proposal.docx
Encapsulation_ Review paper, used for researhc scholars

Spring Bootを触ってみた