- 博客(4)
- 资源 (2)
- 收藏
- 关注
原创 搭建SpringBoot工程以及初期可能遇到的错误
1. 快速搭建1,打开浏览器,在地址栏输入http://start.spring.io 2,填写项目信息 3,点击生成项目 4,简单演示新建maven项目 点击下一步 点击下一步 点击完成 复制下载下来的项目到新建项目中1, 关闭特定的自动配置使用@SpringBootApplication的exclude(除去,不...
2018-04-09 19:38:33
1897
原创 spring容器注入错误总结Cannot resolve reference to bean '***' while setting bean property 'ref'
启动tomcat时如下报错严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.springframework.beans.factory.BeanCreationException:...
2018-03-18 19:17:16
47585
1
原创 maven下子项在启动tomcat时卡在preparing launch delegate的错误
maven下子项在启动tomcat时卡在preparing launch delegate,我也看了一些大神们的一些解决问题。有人说是在network的代理中多了一些东西,但是我的情况明显不是。后来加上了log4j,错误信息是 Result Maps collection already contains value for com.*.*.BaseResultMap.说下我的问题,在实体类上我用...
2018-03-17 23:39:22
851
原创 Python中tuple与list的区别及tuple的使用
Python中的tuple内的元素是不可更改的,但是在tuple里可以嵌入list,tuple的list是可更改的。#创建一个只有一个元素的tuplenumber_tuple = (1,)mixed_tuple = (1,2,["a","b"])print(mixed_tuple)print(mixed_tuple[2][0])#tuple不可改变,当tuple内有list的时候,可
2018-01-11 21:33:03
661
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人