项目中遇到的问题
不会Java怎么找女朋友
这个作者很懒,什么都没留下…
展开
-
Error creating bean with name ‘dataSource‘ defined in class path resource
springboot+mybatis+druid,配置多数据源启动报错原因:1、根据标题报错显示创建不了‘dataSource’,这个bean,有理由想到springboot启动时自动配置扫描没有创建到该bean。2、检查主启动类存放的位置,应该放在创建项目时填写GroupId对应的位置...原创 2021-01-09 18:05:49 · 1528 阅读 · 0 评论 -
08-Jul-2017 21:45:26.064 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardConte
08-Jul-2017 21:45:26.064 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file08-Jul-2017 21:45:26.066 严重 [RMI T.原创 2020-11-29 16:19:33 · 1591 阅读 · 1 评论 -
npm install 遇到问题:ERR! request to https://registry.npmjs.org/express failed, reason: getaddrinfo
报错如下:原因:公司使用了代理服务器,node.js没有走环境代理解决方法:1、设置代理:npm config set proxy http://server:portnpm config set https-proxy http://server:port2、如果需要认证的话可以这样设置:npm config set proxy http://username:password@server:portnpm confit set https-proxy http://u原创 2020-06-04 14:30:52 · 36361 阅读 · 3 评论 -
org.springframework.dao.DataIntegrityViolationException、com.mysql.jdbc.exceptions.jdbc4.MySQLDataExc
Caused by: org.springframework.dao.DataIntegrityViolationExceptionCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLDataException:出现这两个异常的时候表示的是数据绑定异常1、检查实体类的数据类型跟数据库的数据类型是否一致?2、使用Lombok的话要检查...原创 2020-05-04 17:17:58 · 255 阅读 · 0 评论 -
Springboot2.0 静态资源访问不到的问题
Springboot2.0之后会自动拦截静态资源,所以需要手动排除静态资源路径代码:@Configurationpublic class MvcConfig implements WebMvcConfigurer {//所有的WebMvcConfigurer组件都会一起起作用 @Bean//将组件组件注册到容器中 public WebMvcConfigurer web...原创 2019-12-13 20:02:28 · 460 阅读 · 0 评论