Home > Back-end >  How to know the framework and third-party integration standard way?
How to know the framework and third-party integration standard way?

Time:09-22

Kafka springboot integration, for example, redis, etc., each website only using document, no mutual integration demo, online demo is different, how to find website integrated demo?

CodePudding user response:

Such as mybatis, official development package itself is not directly with spring integration, need spring expansion pack for integration, you integrate spring and mybatis will first introduce
& lt; dependency>
& lt; groupId> Org. Mybatis
& lt; artifactId> Mybatis
& lt; Version> 3.4.1 track & lt;/version>
& lt;/dependency>
Then extended integration package
& lt; dependency>
& lt; groupId> Org. Mybatis
& lt; artifactId> Mybatis - spring
& lt; Version> 1.3.0 & lt;/version>
& lt;/dependency>
So you want to check to mybatis - spring integration document, not view the mybatis, but there are exceptions, such as for springmvc directly with spring, belong to the spring buckets, generally itself to support the integration, so does not need to be introduced and integrated expansion pack
  • Related