会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园站长
这是人类成长进步中记录的每一时刻
博客园
首页
新随笔
新文章
联系
管理
上一页
1
···
17
18
19
20
21
22
23
24
25
···
72
下一页
2018年7月31日
mybatis There is no getter for property named '*' in 'class java.lang.String
摘要: 1、原因 server层 xxxx.get("1234") map <if test="aaa != null and aaa.id != null and aaa.id != ''"> AND a.aaa = #{aaa.id} </if> 强行把字符串当作实体对象来判断了,所以是笔误 应该改为
阅读全文
posted @ 2018-07-31 10:16 dm3344
阅读(138)
评论(0)
推荐(0)
2018年7月30日
Caused by: org.xml.sax.SAXParseException; lineNumber: 1
摘要: 百分百是你的MYBATIS 的xml 里面的 xml节点没写对,或者忘记关闭,或者格式不对
阅读全文
posted @ 2018-07-30 17:19 dm3344
阅读(147)
评论(0)
推荐(0)
2018年7月28日
Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds
摘要: Servers -->双击你的启动服务--》 对话框左下角切换选项卡为 Overview --》中东找到Timeouts 把Start(in seconds)改为 100 ,然后按ctrl+s保存下重启即可
阅读全文
posted @ 2018-07-28 10:12 dm3344
阅读(221)
评论(0)
推荐(0)
2018年7月25日
javascript history.go(-1) 返回刷新不起作用
摘要: js返回刷新两种方式: 方式一:有提示框 <input type="button" onClick="javascript:history.go(-1);location.reload();"value="返回" /> 方式二:直接返回 <input type="button" onClick="j
阅读全文
posted @ 2018-07-25 09:41 dm3344
阅读(4660)
评论(0)
推荐(0)
2018年7月24日
mysql format函数对数字类型转化的坑
摘要: 原值param = 1234.5678 format(param, 2) (不建议) 结果,字符串类型,123,4.57 会导致你图表char 生成失败,直接变0 convert(param, decimal(12,2))(建议) 结果, 数值类型 1234.57 cast(param as dec
阅读全文
posted @ 2018-07-24 11:01 dm3344
阅读(348)
评论(0)
推荐(0)
mysql case when 判断null
摘要: select name,case WHEN m.NAME is null THEN '' else m.NAME end NAME1 from sys_users
阅读全文
posted @ 2018-07-24 10:23 dm3344
阅读(3319)
评论(0)
推荐(0)
2018年7月6日
get改post
摘要: //原模式,get 入参只能小于260字符 location.href = hrefStr; localhost/getinfo/UUSDDJSKDJSJKJK 后台 getinfo(string id) //以下是改为post $("<form id='formLocation' style='d
阅读全文
posted @ 2018-07-06 09:36 dm3344
阅读(378)
评论(0)
推荐(0)
2018年7月2日
打印机无法访问打印机怎么连
摘要: 打印机电脑 1、设置Guest 用户 禁止状态(win7) 控制面板→管理工具→计算机管理,接着依次展开“计算机管理(本地)→系统工具→本地用户和组→用户”,找到Guest账户。如果Guest账户出现一个红色的叉号,表明该账户已被停用,右键单击该账号,在Guest属性对话框中,去除 “账户已禁用”的
阅读全文
posted @ 2018-07-02 10:56 dm3344
阅读(904)
评论(0)
推荐(0)
2018年6月27日
IDEA 2018 LICENSE SERVER
摘要: http://idea.congm.in
阅读全文
posted @ 2018-06-27 14:15 dm3344
阅读(563)
评论(0)
推荐(0)
2018年6月26日
idea 项目打包发布
摘要: clean install -Dmaven.test.skip=true -pl 项目名(maven为准) -am -amd
阅读全文
posted @ 2018-06-26 16:09 dm3344
阅读(143)
评论(0)
推荐(0)
上一页
1
···
17
18
19
20
21
22
23
24
25
···
72
下一页