- spring boot 报错 Invalid property
- Spring boot JPA 报错: No Property
- spring boot 启动时候报错 MongoSocketOp
- Invalid character found in metho
- Spring Boot 启动出现"no property fin
- spring boot 插入数据报错
- spring boot报错 : Full authenticat
- IDEA中Spring boot应用如何从main方法运行
- 报错,Result Maps collection alread
- java.lang.IllegalStateException:
spring boot 报错:
Caused by: org.springframework.beans.NotWritablePropertyException: Invalid property ‘mapperHelper’ of bean class [org.mybatis.spring.mapper.MapperFactoryBean]: Bean property ‘mapperHelper’ is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
原因是:通用mapper不支持热部署,不支持devtool。
解决方法:在pom.xml屏蔽掉热部署就OK了。
<!-- 热启动配置 -->org.springframework.bootspring-boot-devtoolstrue
网友评论