mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
24 lines
609 B
Java
24 lines
609 B
Java
package com.mybatisflex.solon.demo;
|
|
|
|
import com.mybatisflex.core.FlexGlobalConfig;
|
|
import com.mybatisflex.core.mybatis.FlexConfiguration;
|
|
import com.mybatisflex.solon.ConfigurationCustomizer;
|
|
import com.mybatisflex.solon.MyBatisFlexCustomizer;
|
|
import org.noear.solon.annotation.Component;
|
|
|
|
/**
|
|
* @author noear 2024/12/17 created
|
|
*/
|
|
@Component
|
|
public class MyBatisFlexCustomizerImpl implements MyBatisFlexCustomizer, ConfigurationCustomizer {
|
|
@Override
|
|
public void customize(FlexGlobalConfig globalConfig) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void customize(FlexConfiguration configuration) {
|
|
|
|
}
|
|
}
|