主要是讲实际项目中本人遇到的升级问题
jdk版本
当前服务 是spring boot 2.3, jdk8
graalvm 支持的是spring boot3.1.5,最低jdk17
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<configuration>
<!--<!– imageName用于设置生成的二进制文件名称 –>
<imageName>${project.artifactId}</imageName>-->
<!-- mainClass用于指定main方法类路径 -->
<mainClass>com.xxx.Application</mainClass>
</configuration>
</plugin>
升级内容
javax 在spring boot 中已经改成了javax -> jakarta
elasticsearch 在spring 中进行了大升级
Jedis 进行了版本升级,升级代码不大 把jedis 删除用原来的lettuce
kafka 进行了版本升级,kafka 升级很小
## mybatis 的native
mybatis 目前不支持native-image
要使用mybatis 提供的特殊native 版本
因此决定要使用mybatis-plus
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>3.5.4.1</version>
</dependency>
不能用mapperscan
@MapperScan({“com.wps.snauth.repository.db”})
用@mapper
如果遇到
Property: mybatis-plus.configuration.default-enum-type-handler
Value: “org.apache.ibatis.type.EnumOrdinalTypeHandler”
Origin: class path resource [application.yml] – 31:32
Reason: failed to convert java.lang.String to java.lang.Class<org.apache.ibatis.type.TypeHandler<?>> (caused by java.lang.ClassNotFoundException: org.apache.ibatis.type.EnumOrdinalTypeHandler)
要将resource里面xml 改一下
mybatis的xml文件要路径和名称和mapper 的class 保持一致
主要参考一下下面的样例将mybatis 更新成新的版本,主要是xml路径更改还有那个MyBatisNativeConfiguration.java 这个类里面用的spring hits
这是官方样例:
https://github.com/nieqiurong/mybatis-native-demo/tree/mybatis-plus
json
fastjson 要全部改成jackson,没有为啥,太多泛型要改
主要的各种classNotDefine 啥的都是json转string 的时候泛型问题,如果有就reflect加下文件,
com.xxx.JsonUtil – JSON反序列化异常:Cannot construct instance of com.xxx
: cannot deserialize from Object value (no delegate- or property-based Creator): this appears to be a native image, in which case you may need to configure reflection for the class that is to be deserialized
{
"name": "com.xxx.xxxVO",
"allDeclaredConstructors": true,
"allPublicConstructors": true,
"allDeclaredMethods": true,
"allPublicMethods": true
}
spring 国际化
有部分文件无法加载,要使用下面代码,加载文件
hints.resources().registerPattern(“i18n/*”);
上面这个是继承一个RuntimeHintsRegistrar 让graalvm 编译时获取hints 和reflect.json 作用一样
hits编写规则reflection-config.json
hits 编写规则
可以使用agent 来生成reflection-config.json
还有一个就是使用hit 用代码写
class MyBaitsRuntimeHintsRegistrar implements RuntimeHintsRegistrar {
@Override
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
//用来访问默认构造函数的
hints.reflection().registerType(xxx.class, MemberCategory.values())
}
kafka
@KafkaListener(topics = “#{topicNameHelper.getTopic()}”)
Caused by: org.graalvm.nativeimage.MissingReflectionRegistrationError: The program tried to reflectively invoke method public java.lang.String com.wps.snauth.mq.helper.TopicNameHelper.getSnInboxTopic() without it being registered for runtime reflection. Add it to the reflection metadata to solve this problem. See https://www.graalvm.org/latest/reference-manual/native-image/metadata/#reflection for help.
出现这个错误是说,声明里面不支持动态的变量,
改成@KafkaListener(topics =’ddd’) 静态就行
发表回复