In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-11 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.