会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
冷乐飒
博客园
首页
博问
闪存
新随笔
订阅
管理
2020年8月25日
basic_consume() got multiple values for keyword argument 'queue'
摘要: 看老男孩的python视频 跟着手巧代码 结果发现结果不一样 出现:basic_consume() got multiple values for keyword argument ‘queue’ 代码如下: #!/usr/bin/env python # -*- coding: utf-8 -*-
阅读全文
posted @ 2020-08-25 11:11 冷乐飒
阅读(441)
评论(0)
推荐(0)
编辑
2020年7月21日
perl改造成bash---结果写入xml
摘要: #!/bin/bash ipv4=`ifconfig eth0 | grep 'inet addr'|awk -F ":" '{print $2}'|awk '{print$1}'` ipv6=`ifconfig eth0 | grep 'inet6 addr'|awk -F "/" '{print
阅读全文
posted @ 2020-07-21 10:51 冷乐飒
阅读(195)
评论(0)
推荐(0)
编辑
2019年12月7日
No converter found for return value of type: class java.util.HashMap + 'Content-Type' cannot contain wildcard type '*'
摘要: 背景说明: 环境:IDEA java语言 springmvc.xml 配置 需要用到fastjson jackson pom.xml中配置了需要用到的包,springmvc.xml中也写了注解驱动 Controller中返回Object类型 到返回Map类型的时候 Controller中代码如下:
阅读全文
posted @ 2019-12-07 12:17 冷乐飒
阅读(4735)
评论(0)
推荐(0)
编辑
2019年12月4日
springmvc 启动报 java.lang.NoSuchMethodError: org.springframework.core.GenericTypeResolver.resolveTypeArguments(Ljava/lang/Class;Ljava/lang/Class;)[Ljava/lang/Class;
摘要: maven项目,所有的包都是按照提示,自动添加的,知道启动项目报错 才发现 spring-web 和 spring-webmvc 版本不一致 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</art
阅读全文
posted @ 2019-12-04 21:32 冷乐飒
阅读(2170)
评论(0)
推荐(0)
编辑
2019年12月1日
web项目部署名和项目名不一致
摘要: 背景:eclipse中的maven项目 浏览器输入localhost:8080/项目名 报404错误 检查:1.pom文件中:<build>标签下的 <finalName>项目名</finalName> 2.右键项目Properties 输入web 找到Web Project Settings右边C
阅读全文
posted @ 2019-12-01 11:55 冷乐飒
阅读(481)
评论(1)
推荐(1)
编辑
2019年9月28日
java.sql.SQLException: Column Index out of range, n + 1 > n
摘要: 自己在跟着视频做Demo , 遇到的问题 首先找到了强大的度娘,结果发现度娘上的答案几乎千篇一律,还好安了个插件 可以访问Google,果然第一个命中我的问题,贴出来膜拜! 首先强调的是:由于rs.next()遍历查询结果时,下标是从“1”开始,而不是是从“0”开始,此处容易导致出错。而我已避免 S
阅读全文
posted @ 2019-09-28 16:28 冷乐飒
阅读(2298)
评论(0)
推荐(0)
编辑
2019年6月6日
Struts2项目.xml文件配置错误:元素类型为 "package" 的内容必须匹配 "(result-types?,interceptors?,default-interceptor-ref?,default-action-ref?,default-class-ref?,global-results?,global-allowed-methods?,global-exception-mappi
摘要: 配置文件要严格按照以下顺序: result-types interceptors default-interceptor-ref default-action-ref default-class-ref global-results global-allowed-methods global-exc
阅读全文
posted @ 2019-06-06 09:54 冷乐飒
阅读(401)
评论(0)
推荐(0)
编辑
2019年6月3日
Eclipse下Web项目路径跳转
摘要: 项目结构如下: src : com.restaurant.servlet --> RegisterServlet WebContent : ch03 --> register.jsp 浏览器输入 localhost:8080/项目名/ch03/register.jsp 要跳转到src 下的Regis
阅读全文
posted @ 2019-06-03 17:44 冷乐飒
阅读(671)
评论(0)
推荐(0)
编辑
2019年5月6日
项目部署到tomcat后控制台出现警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:xxx' did not find a matching property.web浏览器出现404
摘要: web 项目部署到 tomcat 8 之后 Console 出现如下警告 : 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.s
阅读全文
posted @ 2019-05-06 19:13 冷乐飒
阅读(247)
评论(0)
推荐(0)
编辑
2019年5月5日
jsp文件中写${pageContext.request.contextPath}报错:javax.servlet.jsp cannot be resolved to a type
摘要: 添加如下依赖即可: 参考博客:http://jtuts.com/2016/03/04/javax-servlet-jsp-cannot-resolved-type/
阅读全文
posted @ 2019-05-05 11:02 冷乐飒
阅读(240)
评论(0)
推荐(0)
编辑
下一页