
简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
解决VScode使用git报错:Git: Bad status code: 500
最近在VS code中练习使用Git时,将暂存的更改使用提交操作时报这个错误
解决:Error while adding the mapper ‘interface *** to configuration. Error parsing Mapper XML.
在使用mybatis框架时出现了这个错误,我的错误原因是mapper配置文件的namespace命名错误Wrong namespace. Expected 'com.dao.UserDao' but found 'UserDao'.此处的namespace需要绑定到你的接口,就是你的接口的全路径。例如我的就是com.dao.UserDao在Mybatis中,映射文件中的namespace是用于绑定
网站报错:Current request is not a multipart request
在进行文件上传下载操作时,报这个错误主要信息就是:Current request is not a multipart request我报这个错误的原因主要是因为:在前端使用form表单提交信息时,form标签中缺少了enctype="multipart/form-data"属性。在里面加上:enctype="multipart/form-data" 就没有报错了,可以正常运行。查阅资料后,enc
到底了







