Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the spring integration of Spring Boot2

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article focuses on "what is the spring integration of Spring Boot2". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "what is the spring integration of Spring Boot2?"

Spring integration

Spring Boot provides some convenience for Spring integration, including spring-boot-starter-integration 'Starter'. Spring integration provides abstractions based on messages and other transport protocols, such as HTTP,TCP. If you add an Spring integration dependency, you can initialize it with the @ EnableIntegration annotation. If there is a 'spring-integration-jmx' dependency under classpath, the statistical analysis of message processing will be published through JMX.

Spring Session

Spring Boot automatically configures a variety of storage for Spring Session:

JDBC

MongoDB

Redis

Hazelcast

HashMap

If Spring Session is available, you only need to select the storage type StoreType that you want to store sessions. For example, JDBC will be used as the back-end storage as configured as follows:

1spring.session.store-type=jdbc

Be careful

For backward compatibility, Spring Session automatically configures the use of Redis storage if Redis is available.

Be careful

Set store-type to none to disable Spring Session.

Each store has special settings, for example, the table name can be customized for jdbc storage:

1spring.session.jdbc.table-name=SESSIONS

Monitoring and Management based on JMX

The Java Management extension (JMX) provides a standard mechanism for monitoring and managing applications. By default, Spring Boot will create a MBeanServer with an id of 'mbeanServer', and export any beans annotated by Spring JMX (@ ManagedResource,@ManagedAttribute,@ManagedOperation), referring to the JmxAutoConfiguration class.

At this point, I believe you have a deeper understanding of "what is the spring integration of Spring Boot2". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report