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

@ MapperScan scan package mixed with @ Service and other problems what to do

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

Editor to share with you the @ MapperScan scan package mixed with @ Service and other problems to do, I hope you will learn something after reading this article, let's discuss it together!

@ MapperScan scan package mixed with @ Service problem description

@ MapperScan annotations are generally configured with dao or mapper scan packages, which are generally used for database operations, and the classes in them are usually interfaces. If there are other interfaces in the dao layer, such as @ Service, an error will be reported.

Solution one

It is feasible to remove the service package.

Solution two

Instead of using @ MapperScan, add @ Mapper to each dao or mapper. The method is feasible.

Solution three

Using custom annotations, you don't have to do much on your own when the mybatis annotations are relatively perfect.

Create an annotation @ MyMapperScan

All the attributes in it are plagiarized @ MapperScan

Change MapperScannerRegistrar to your own.

@ Retention (RetentionPolicy.RUNTIME) @ Target (ElementType.TYPE) @ Documented@Import (MyMapperScannerRegistrar.class) @ Repeatable (MapperScans.class) public @ interface MapperScan {String [] value () default {}; String [] basePackages () default {}; Class [] basePackageClasses () default {}; Class markerInterface () default Class.class; String sqlSessionTemplateRef () default "; String sqlSessionFactoryRef () default"; Class markerInterface = annoAttrs.getClass (" markerInterface ") If (! Class.class.equals (markerInterface)) {scanner.setMarkerInterface (markerInterface);} Class

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

Development

Wechat

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

12
Report