Toint

Results 6 issues of Toint

# 环境 flex:`1.8.6` druid:`1.2.22` springboot:`3.2.4` jdk:`21` 报错信息: ``` The bean 'dataSource', defined in class path resource [com/alibaba/druid/spring/boot3/autoconfigure/DruidDataSourceAutoConfigure.class], could not be registered. A bean with that name has already been defined...

1. 已经替换mybatis的依赖了。 ```xml com.mybatis-flex mybatis-flex-spring-boot-starter 1.7.5 org.mybatis mybatis-spring org.mybatis mybatis-spring 3.0.3 ``` 2. 报了一个警告,但是项目正常启动了。 ```log 2023-11-28 17:13:58.480 [ WARN] [66370] [] [ main] [trationDelegate$BeanPostProcessorChecker] : Bean 'com.mybatisflex.spring.boot.FlexTransactionAutoConfiguration' of type [com.mybatisflex.spring.boot.FlexTransactionAutoConfiguration]...

# 环境 spring-boot:`3.3.0` mybatis-flex:`1.9.0` # 使用场景 使用虚拟列的时候,如果不 ignore 属性,mf会把字段拼接到sql内,但是因为虚拟列不能够被赋值,所以会报错。 所以把需要把字段 ignore,只要就不会拼接到sql内,就不会报错了。但是 ignore 后,lambda表达式就会空指针... 得自己套层工具获取列名称~~ # ignore # 工具类 # 会空指针的代码 ```java QueryWrapper query = QueryWrapper.create() .select() .from(XXX.class) // get的属性值是 ignore...

```log zfile | 2025-06-16 01:08:00.129 WARN 1 --- [ ] [ ] [ ] [io-8080-exec-37] o.apache.coyote.http11.Http11Processor 175 : The HTTP response header [Location] with value [https://x.cn/插件应用.pdf] has been removed from...

如果在`SaOAuth2BeanInject`加载`SaOAuth2ServerConfig`这个bean之前, 调用了`SaOAuth2Manager.getServerConfig()`去做写操作, 那么 `SaOAuth2BeanInject` 加载的Bean会覆盖掉原来获取到的对象. 具体场景就是我想在Springboot初始化的时候, 拉取数据库数据把他加载到`SaOAuth2ServerConfig`, 然后springboot初始化完成后这个容器被覆盖了 我不知道我表达清楚没有