上一页 1 ··· 6 7 8 9 10 11 下一页
该文被密码保护。 阅读全文
posted @ 2016-08-04 16:34 每天多帅一点点 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 主要原因是,在windows下压缩文件时,是以系统的默认编码(gbk,gb18030)来压缩,zip文件并没有声明编码的格式,因此,linux下解压缩时,也会使用系统默认的格式(utf-8)解压缩,编码格式不同,自然会出现乱码。 解决办法,linux下解压zip文件时声明一下编码即可。比如对于某个w 阅读全文
posted @ 2016-08-03 08:54 每天多帅一点点 阅读(3027) 评论(0) 推荐(0) 编辑
摘要: 开启: /etc/init.d/mysql start关闭: /etc/init.d/mysql stop重启: /etc/init.d/mysql restart 查看字符集show variables like 'collation_%';show variables like 'charact 阅读全文
posted @ 2016-08-02 16:49 每天多帅一点点 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 下载deb安装文件 1、sudo dpkg -i deb文件2、如果报依赖错误,输入:sudo apt-get install -f3、自动解决依赖后再执行步骤1 阅读全文
posted @ 2016-08-02 16:48 每天多帅一点点 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 切换中英文输入法 Ctrl+space打开终端 Ctrl+Alt+T 终端下复制粘贴 Ctrl + Shift + c/v 阅读全文
posted @ 2016-08-02 16:45 每天多帅一点点 阅读(227) 评论(0) 推荐(0) 编辑
摘要: ssh 用户名@目标地址 阅读全文
posted @ 2016-08-02 16:45 每天多帅一点点 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 报错的代码 @Update("update staff_info set ApplyState = #{applyState} where Id = #{userId}") int handleStaff( Integer userId, Integer applyState); 修改后的代码 @U 阅读全文
posted @ 2016-07-25 14:53 每天多帅一点点 阅读(1540) 评论(0) 推荐(0) 编辑
摘要: 配置完成后可能会报错Cannot enable lazy loading because CGLIB is not available. Add CGLIB to your classpath 是由于缺少jar包 cglig-2.2.jar asm-2.2.3.jar 配置过程 mybatis-co 阅读全文
posted @ 2016-07-21 16:09 每天多帅一点点 阅读(1134) 评论(0) 推荐(0) 编辑
摘要: resultMap中association标签的select属性使用嵌套查询的时候需要引用其它xml文件的配置 此时可以用要引用xml的namespace.引用select的ID 如 <resultMap id="BaseResultMap" type="com.jbt.pojo.SectorSta 阅读全文
posted @ 2016-07-21 15:24 每天多帅一点点 阅读(11701) 评论(1) 推荐(0) 编辑
摘要: 一。 右键工程:Refactor->Rename,或选中工程按F2,修改名称二。右键工程:Properties->Web Project Settings,修改Context Root 三。1.找到项目所在位置(如图): 2.修改项目目录/.setting目录下的org.eclipse.wst.co 阅读全文
posted @ 2016-07-20 17:29 每天多帅一点点 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页