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

The case of the key value when mybatis returns Map in springboot

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

Share

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

In order to unify the case inconsistency of key values returned by different databases, we customize ObjectWrapperFactory to handle it uniformly.

1, first customize the MapWrapper

/ * convert all key of Map to lowercase * * / public class MapKeyLowerWrapper extends MapWrapper {public MapKeyLowerWrapper (MetaObject metaObject, Map map) {super (metaObject, map);} @ Override public String findProperty (String name, boolean useCamelCaseMapping) {return name==null? ": name.toLowerCase ();}}

2, Custom ObjectWrapperFactory

Default ObjectWrapperFactory for mybatis

Public class DefaultObjectWrapperFactory implements ObjectWrapperFactory {public boolean hasWrapperFor (Object object) {return false;} public ObjectWrapper getWrapperFor (MetaObject metaObject, Object object) {throw new ReflectionException ("The DefaultObjectWrapperFactory should never be called to provide an ObjectWrapper.");}}

Our customization is as follows:

Public class MapWrapperFactory implements ObjectWrapperFactory {@ Override public boolean hasWrapperFor (Object object) {return object! = null & & object instanceof Map;} @ Override public ObjectWrapper getWrapperFor (MetaObject metaObject, Object object) {return new MapKeyLowerWrapper (metaObject, (Map) object);}

3. Add the configuration of MapWrapperFactory to the configuration of mybatis

@ Bean (name = "sqlSessionFactory") @ ConditionalOnBean (name = "dataSource") public SqlSessionFactory sqlSessionFactoryBean (@ Qualifier ("dataSource") DataSource dataSource) {SqlSessionFactoryBean bean = new SqlSessionFactoryBean (); bean.setObjectWrapperFactory (new MapWrapperFactory ()); bean.setDataSource (dataSource); / / add XML directory ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver () Try {bean.setMapperLocations (resolver.getResources ("classpath*:com/ultrapower/ioss/**/mapper/**/*.xml")); return bean.getObject ();} catch (Exception e) {e.printStackTrace (); throw new RuntimeException (e) } @ Bean ("sqlSessionTemplate") @ ConditionalOnBean (name = "sqlSessionFactory") public SqlSessionTemplate sqlSessionTemplate (@ Qualifier ("sqlSessionFactory") SqlSessionFactory sqlSessionFactory) {return new SqlSessionTemplate (sqlSessionFactory);} @ ConditionalOnBean (name = "dataSource") @ Bean (name = "transactionManager") public PlatformTransactionManager transactionManager (@ Qualifier ("dataSource") DataSource dataSource) {DataSourceTransactionManager dataSourceTransactionManager = new DataSourceTransactionManager (dataSource); return dataSourceTransactionManager;}

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