
报错处理
沐岚浩
to be a better man
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
swagger2版本与3版本差异的报错与处理
swagger2版本与3版本差异的报错与处理配了几个小时,最后发现swagger2.xx与3.xx之间做了很大的改动。那首先就先看一下问题。问题开始学习swagger,第一步就给我上一课。开始我的配置为 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>3.0.原创 2021-07-28 12:33:14 · 2094 阅读 · 0 评论 -
Shiro10 Minute Tutorial on Apache Shiro测试出错
Shiro初学测试出错刚刚学习shiro,结果第一个例子就爆红,就是哪个10 Minute Tutorial on Apache Shiro的例子。官方源码是这个。 Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini"); SecurityManager securityManager = factory.getInstance();原创 2021-07-27 18:31:55 · 129 阅读 · 0 评论 -
Consider defining a bean of type ‘**.Mapper‘ in your configuration
Consider defining a bean of type ‘**.Mapper’ in your configuration报错Description:Field mapper in com.**.service.StudentServiceImpl required a bean of type 'com.**.mapper.StudentxMapper' that could not be found.The injection point has the following anno原创 2021-07-27 18:28:46 · 1074 阅读 · 0 评论 -
Ajax前后端数据交互--SSM
Ajax前后端数据交互–SSM前后台数据交互均使用json。框架ssm(spring+springmvc+mybatis)@RequestBody注解实现接收http请求的json数据,将json数据转换为java对象@ResponseBody注解用于将Controller的方法返回的对象,通过HttpMessageConverter接口转换为指定格式的数据如:json,xml等,通过Response响应给客户端1.导包 <dependency> <groupId>原创 2021-07-24 18:54:46 · 424 阅读 · 0 评论 -
GIT 回滚后恢复到最近一次提交的版本
OpenSSL SSL_connect: Connection was reset in connection to github.com:443git config --global http.sslVerify falseOK!原创 2021-07-24 18:47:26 · 470 阅读 · 0 评论 -
SpringBoot:input-date和类的date报错
SpringBoot:input-date和类的date报错springboot里面默认解析的是WebMvcProperties.java/** * Date format to use, for example `dd/MM/yyyy`. */private String date;/** * Time format to use, for example `HH:mm:ss`. */private String time;/** * Date-time format to u原创 2021-07-24 18:42:28 · 355 阅读 · 0 评论 -
idea之设置web工程的Tomcat
idea之设置web工程的Tomcat注意在idea里部署Tomcat时踩了很多坑,这是我的解决方式,希望有对各位有帮助。step01step02step03step04step05原创 2020-11-17 21:36:15 · 154 阅读 · 0 评论 -
python 之 OSError: Error reading file错误
tree = etree.parse(page_text,parser=parser) File "src\lxml\etree.pyx", line 3521, in lxml.etree.parse File "src\lxml\parser.pxi", line 1859, in lxml.etree._parseDocument File "src\lxml\parser.pxi", line 1885, in lxml.etree._parseDocumentFromURL Fi..原创 2020-10-13 17:20:41 · 7633 阅读 · 1 评论