上一页 1 ··· 9 10 11 12 13 14 下一页

2016年11月27日

myeclipse中Web App Libraries无法自动识别lib下的jar包

摘要: 在项目目录下找到.object文件修改 在.setting文件夹下添加org.eclipse.wst.common.component文件内容如下: 阅读全文

posted @ 2016-11-27 01:14 ckx0709 阅读(408) 评论(0) 推荐(0) 编辑

2016年11月19日

mybatis(三)懒加载

摘要: 懒加载的好处: 1> 不必将创建对象的代码全部写在viewDidLoad方法中,代码的可读性更强,层次感很强。 2> 每个属性的getter方法中分别负责各自的实例化处理,代码彼此之间的独立性强,松耦合 3>只有当真正需要资源时,再去加载,节省了内存资源。 操作步骤: 一、在mybatis配置文件中 阅读全文

posted @ 2016-11-19 21:41 ckx0709 阅读(1572) 评论(0) 推荐(0) 编辑

mybatis(二)接口编程 、动态sql 、批量删除 、动态更新、连表查询

摘要: 原理等不在赘述,这里主要通过代码展现。 在mybatis(一)基础上,新建一个dao包,并在里面编写接口,然后再在xml文件中引入接口路径,其他不变,在运用阶段将比原始方法更节约时间,因为不用再去手动的 引用sql,我们只需调用dao层的方法,然后让dao层的方法去找配置文件,去找sql,sql查询 阅读全文

posted @ 2016-11-19 15:19 ckx0709 阅读(2138) 评论(0) 推荐(0) 编辑

2016年11月14日

There is no getter for property named 'NULL' in ……

摘要: 往往细节上的错误事最要命的事情,当你看着代码,逻辑上没有问题,但是却又曝出一些莫名其妙不知所以的错,你百度了 说出来的原因又是乱七八糟的鸡肋!很无助,纠结了很久,浪费了很多宝贵的时间……看代码! 看这段代码,一小段,加上错误提示,你应该可以悟得到!但是在码海你能在短时间发现,你厉害! 没错!<if 阅读全文

posted @ 2016-11-14 22:32 ckx0709 阅读(4825) 评论(0) 推荐(0) 编辑

mybatis(一)环境的搭建

摘要: 项目模型: 一、创建一个web项目ssm001 1、1准备数据 在数据创建表并添加数据 user表: dept表: emp表: 1、2在web-INF下lib加入mybatis所需jar包: 1、3在项目src下配置mybatis配置文件config.xml: 请注意注释 “二、 (2)引入关系映射 阅读全文

posted @ 2016-11-14 01:42 ckx0709 阅读(368) 评论(0) 推荐(0) 编辑

2016年11月13日

Multiple annotations found at this line: - The content of element type "mapper" must match "EMPTY". - Attribute "namespace" must be declared for element type "mapper".

摘要: 今天在mybatis的mapper映射配置文件中遇到了这样的问题,困扰了我3个小时: Multiple annotations found at this line: - The content of element type "mapper" must match "EMPTY". - Attri 阅读全文

posted @ 2016-11-13 22:42 ckx0709 阅读(8400) 评论(4) 推荐(2) 编辑

The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProv

摘要: 在mybatis配置文件config.xml中报错: The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,ob 阅读全文

posted @ 2016-11-13 21:33 ckx0709 阅读(3273) 评论(0) 推荐(0) 编辑

The reference to entity "characterEncoding" must end with the ';' delimiter.

摘要: 一个正常的MySQL配置却一直报错: The reference to entity "characterEncoding" must end with the ';' delimiter. 逐步深究出在xml配置文件中需要替换转译的几个符号: 在xml文件中有以下几类字符要进行转义替换: 阅读全文

posted @ 2016-11-13 21:07 ckx0709 阅读(384) 评论(0) 推荐(0) 编辑

Referenced file contains errors (http://mybatis.org/dtd/mybatis-3-config.dtd). For more information, right click on the message in the Problems View and select "Show Details..."

摘要: mybatis配置文件报错Referenced file contains errors mybatis的配置文件报错 The errors below were detected when validating the file "mybatis-3-config.dtd" via the fil 阅读全文

posted @ 2016-11-13 20:27 ckx0709 阅读(8175) 评论(1) 推荐(1) 编辑

2016年11月12日

MyEclipse连接MySQL

摘要: 在官网http://www.mysql.com/downloads/下载数据库连接驱动 本文中使用驱动版本为mysql-connector-java-5.1.40 一、创建一个java测试项目MySQLConnectorsTest 在项目下穿件一个lib文件夹用来存放MySQL驱动包。 右键驱动包b 阅读全文

posted @ 2016-11-12 17:24 ckx0709 阅读(611) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 下一页

导航