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

Нажмите для полного просмотра!
Spring boot, слайд №1Spring boot, слайд №2Spring boot, слайд №3Spring boot, слайд №4Spring boot, слайд №5Spring boot, слайд №6Spring boot, слайд №7Spring boot, слайд №8Spring boot, слайд №9Spring 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 Boot applications need very little Spring configuration.
Описание слайда:
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 developing a web application, we will add a spring-boot-starter-web dependency 
Описание слайда:
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(https://examples.javacodegeeks.com/enterprise-java/spring/tomcat-vs-jetty-vs-undertow-comparison-of-spring-boot-embedded-servlet-containers/)
Описание слайда:
How to specify server? Tomcat Jetty Undertow(https://examples.javacodegeeks.com/enterprise-java/spring/tomcat-vs-jetty-vs-undertow-comparison-of-spring-boot-embedded-servlet-containers/)

Слайд 8





How to specify server?	

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

Слайд 9





How to specify server?	


<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
         <exclusions>
             <exclusion>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-starter-tomcat</artifactId>
             </exclusion>
         </exclusions>
</dependency>
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-undertow</artifactId>
     </dependency>
Описание слайда:
How to specify server? <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency>

Слайд 10





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;
}
Описание слайда:
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
Загрузить презентацию