springboot
henshuia
这个作者很懒,什么都没留下…
展开
-
springboot整合jsp会报Whitelabel Error Page
这里需要你的在你的idea中进行配置,这里是springboot和idea有一点点冲突原创 2021-01-05 20:42:50 · 144 阅读 · 0 评论 -
Consider the following: If you want an embedded database (H2, HSQL or Derby)
错误原因 在pom中引入了mybatis-spring-boot-starter ,Spring boot默认会加载org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration类,DataSourceAutoConfiguration类使用了@Configuration注解向spring注入了dataSource bean。因为工程中没有关于dataSource相关的配置信息,当spring创建dataSource bean.原创 2021-01-04 20:40:58 · 1865 阅读 · 0 评论 -
在是用PostMan进行上传图片时报“Failed to convert value of type ‘org.springframework.web.multipart.support.
1、首先是如何使用PostMan进行上传图片 接下来是controller层 这里一定要注意的是哪个@RequestParam注解,如果不添加上回报无法识别这个参数错误 2、但是如果你是下面这种参数回报Failed to convert value of type 'org.springframework.web.multipart.support. 这里就需要写成MultipartFile这个类,但是有人就会说我就想使用File类,在代码中操作怎么办?那就需要这个工具类,首先你还是在参数中写Multi原创 2021-01-04 17:58:38 · 5321 阅读 · 0 评论 -
Intellij IDEA运行报command line is too long. shorten command line for xxx 解法
找到项目下的.idea/workspace.xml,在标签里添加一行属性:原创 2020-06-15 15:44:53 · 251 阅读 · 0 评论