Spring Boot + Undertow上传文件找不到临时目录
问题出现
前2天,公司的 SpringBoot 项目突然出现了,无法上传 Excel 文件的问题。
经过查看 Java 日志,发现出现了大量的异常:java.nio.file.NoSuchFileException: /tmp/undertow.12020.9432679758080410942/undertow17157208698492118168upload
前2天,公司的 SpringBoot 项目突然出现了,无法上传 Excel 文件的问题。
经过查看 Java 日志,发现出现了大量的异常:java.nio.file.NoSuchFileException: /tmp/undertow.12020.9432679758080410942/undertow17157208698492118168upload
最近在SpringBoot的项目中新增了不少改动,然后就碰到了一个非常奇怪的问题。
Hibernate
数据库查询报错2021-03-03 17:08:28.016 ERROR 36216 --- [ XNIO-2 task-1] o.h.p.access.spi.SetterMethodImpl : HHH000123: IllegalArgumentException in class: net.margrop.racentity.entity.Race, setter method of property: raceType
2021-03-03 17:08:28.016 ERROR 36216 --- [ XNIO-2 task-1] o.h.p.access.spi.SetterMethodImpl : HHH000091: Expected type: net.margrop.raceapi.entity.permanent.RaceType, actual value: net.margrop.raceapi.entity.permanent.RaceType
这简直就是奇了怪了
Expected type
和actual value
完全是一模一样,可Hibernate
认为不一样,这可咋整。
在本文中,我们将看到如何使用Hibernate Types开源项目将JSON列映射到JPA实体属性。
虽然您可以创建自己的自定义Hibernate类型,但可以在Oracle,SQL Server,PostgreSQL或MySQL上映射JSON列类型,但是由于Hibernate Types项目已经提供了此功能,因此您无需实现自己的Hibernate Type 。
最近升级了SpringFox至3.0.0版本,访问接口文档,出现了一堆异常
Illegal DefaultValue null for parameter type integer
java.lang.NumberFormatException: For input string: ""
AOP中扫描指定注解相关说明
(1)@annotation:用来拦截所有被某个注解修饰的方法
(2)@within:用来拦截所有被某个注解修饰的类
(3)within:用来指定扫描的包的范围