Spring boot презентация

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.

Слайд 1Spring boot


Слайд 2What 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.

Слайд 3What 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 

Слайд 4How to run spring boot application?
public static void main(String[] args) {

SpringApplication.run(?.class, args); }


Слайд 5@SpringBootApplication
@Configuration
@EnableAutoConfiguration
@ComponentScan


Слайд 6Profiling
@Profile(?)

spring.profiles.active=?


Слайд 7How 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/)


Слайд 8How to specify server?


org.springframework.boot
spring-boot-starter-web



Слайд 9How to specify server?



org.springframework.boot
spring-boot-starter-web


org.springframework.boot
spring-boot-starter-tomcat




org.springframework.boot
spring-boot-starter-undertow



Слайд 10How 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;
}


Обратная связь

Если не удалось найти и скачать презентацию, Вы можете заказать его на нашем сайте. Мы постараемся найти нужный Вам материал и отправим по электронной почте. Не стесняйтесь обращаться к нам, если у вас возникли вопросы или пожелания:

Email: Нажмите что бы посмотреть 

Что такое ThePresentation.ru?

Это сайт презентаций, докладов, проектов, шаблонов в формате PowerPoint. Мы помогаем школьникам, студентам, учителям, преподавателям хранить и обмениваться учебными материалами с другими пользователями.


Для правообладателей

Яндекс.Метрика