踩坑记录
imyLove7
这个作者很懒,什么都没留下…
展开
-
【转载】DLL load failed: 找不到指定的模块。
原文链接 :https://www.cnblogs.com/wisir/p/10560426.html出现这个问题,看到有不少博文说因为【没有安装某些 Visual C++ 】,但也有人评论说【安装了还是出错】。终于找到另外一篇文章,我按照他的做法,这个问题可以成功解决。所以在这里提供另外一种可能的解决方法。【解决方法】:配置 Anaconda 的环境变量。没有博客园账号,不方便联系到博主,私自转载,请求原谅。...转载 2020-11-08 18:44:45 · 616 阅读 · 0 评论 -
Springboot / thymeleaf / Jquery Ajax 请求报错
ajax请求12020-04-24 13:30:29.823 ERROR 9604 --- [io-8080-exec-10] org.thymeleaf.TemplateEngine : [THYMELEAF][http-nio-8080-exec-10] Exception processing template "admin/ajaxtest/movies/sea...原创 2020-04-24 13:34:43 · 313 阅读 · 0 评论 -
踩坑记录:关于spring boot自动注入出现Consider defining a bean of type 'xxx' in your configuration问题
Description:Field districtService in com.ymzh.controller.admin.MovieHandler required a bean of type 'com.ymzh.service.DistrictService' that could not be found.The injection point has the followin...原创 2020-04-22 21:53:19 · 5194 阅读 · 0 评论 -
踩坑记录:input 使用需要注意的地方
多条件查询中,表单有多个input,type类型为text,这种input没有填入值的情况下传参到后台的是一个空字符串“”,而非null。我这里写的是判断不为null,<select id="findByMovie" parameterType="Movie" resultType="Movie" > select * from t_movie wher...原创 2020-04-21 10:47:21 · 480 阅读 · 0 评论 -
踩坑记录:Mybatis foreach用法需要注意的地方
今天在使用的时候,遇到了这个错误Parameter ‘tagIdList’ not found. Available parameters are [Collection,list]repository接口中 public List<Tag> findAllById(List tagIdList);mapper.xml中<select id...原创 2020-04-21 10:39:47 · 601 阅读 · 0 评论