🗊 Презентация Spring boot

Нажмите для полного просмотра!
Spring boot, слайд №1 Spring boot, слайд №2 Spring boot, слайд №3 Spring boot, слайд №4 Spring boot, слайд №5 Spring boot, слайд №6 Spring boot, слайд №7 Spring boot, слайд №8 Spring boot, слайд №9 Spring boot, слайд №10

Вы можете ознакомиться и скачать презентацию на тему Spring boot. Доклад-сообщение содержит 10 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


Spring boot
Описание слайда:
Spring boot

Слайд 2


What is spring boot? Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. Most Spring...
Описание слайда:
What is spring boot? Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. Most Spring Boot applications need very little Spring configuration.

Слайд 3


What is starter? “Starters” simply provide dependencies that you are likely to need when developing a specific type of application. Since we are...
Описание слайда:
What is starter? “Starters” simply provide dependencies that you are likely to need when developing a specific type of application. Since we are developing a web application, we will add a spring-boot-starter-web dependency 

Слайд 4


How to run spring boot application? public static void main(String[] args) { SpringApplication.run(?.class, args); }
Описание слайда:
How to run spring boot application? public static void main(String[] args) { SpringApplication.run(?.class, args); }

Слайд 5


@SpringBootApplication @Configuration @EnableAutoConfiguration @ComponentScan
Описание слайда:
@SpringBootApplication @Configuration @EnableAutoConfiguration @ComponentScan

Слайд 6


Profiling @Profile(?) spring.profiles.active=?
Описание слайда:
Profiling @Profile(?) spring.profiles.active=?

Слайд 7


How to specify server? Tomcat Jetty Undertow(
Описание слайда:
How to specify server? Tomcat Jetty Undertow(

Слайд 8


How to specify server? org.springframework.boot spring-boot-starter-web
Описание слайда:
How to specify server? org.springframework.boot spring-boot-starter-web

Слайд 9


How to specify server? org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat org.springframework.boot...
Описание слайда:
How to specify server? org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat org.springframework.boot spring-boot-starter-undertow

Слайд 10


How to configure HTTP 2.0 support? @Bean public UndertowEmbeddedServletContainerFactory embeddedServletContainerFactory() {...
Описание слайда:
How to configure HTTP 2.0 support? @Bean public UndertowEmbeddedServletContainerFactory embeddedServletContainerFactory() { UndertowEmbeddedServletContainerFactory factory = new UndertowEmbeddedServletContainerFactory(); factory.addBuilderCustomizers( builder -> builder.setServerOption(UndertowOptions.ENABLE_HTTP2, true)); return factory; }



Теги Spring boot
Похожие презентации
Mypresentation.ru
Загрузить презентацию