-
SqlSession的作用: 1.向SQL语句传入参数 2.执行SQL语句 3.获取执行SQL语句的结果 4.事务的控制 如何得到SqlSession: 1.通过配置文件获取数据库连接相关信息 2.通过配置信息构建SqlSessionFactory 3.通过SqlSessionFactory打开数据库会话查看全部
-
resultMap:在XML配置的map,若不配置,只能按列名与对象的属性名来对应填充,不区分大小写 resultType:Java对象 parameterMap:不推荐使用 #{}:有预编译,可防sql注入, ${}:无预编译,直接拼接参数,字符串无引号;查看全部
-
容易混淆的概念: resultMap 必须指向一个配置reultMap的标签 resultType 必须保证结果集中的列名 跟实体中的属性名一致 parameterMap 需要自定义 parameterType java 类型 resultMap:在XML配置的map,若不配置,只能按列名与对象的属性名来对应填充,不区分大小写 resultType:Java对象 parameterMap:不推荐使用 #{}:有预编译,可防sql注入, ${}:无预编译,直接拼接参数,字符串无引号;查看全部
-
mybatis标签查看全部
-
注意双引号的写法查看全部
-
mybatis模糊查询 <select id="" parameterType="table.message" result=""> select ID from message where 1=1 <if test="command!=null and !"@quot;.equals(command.trim())"> and command=#{command} </if> //注意 "表示双引号 [ 查看全文 ]查看全部
-
MyBatis中的OGNL表达式查看全部
-
MyBatis中的OGNL表达式查看全部
-
访问数据库 //通过配置文件获取数据库连接信息 Reader reader = Resources.getResourceAsReader("config/Configuration.xml"); //通过配置信息构建一个SqlSessionFactory SqlSessionFactory sqlSessionFactory = new SqlSessioFactoryBuilder().build(reader); //通过sqlSessionFactory打开一个数据库会话 SqlSession sqlSession = sqlSeesionFactory.openSession();查看全部
-
如何得到SqlSession: 1.通过配置文件获取数据库连接相关信息 2.通过配置信息构建SqlSessionFactory 3.通过SqlSessionFactory打开数据库会话查看全部
-
SqlSession的作用: 1.向SQL语句传入参数 2.执行SQL语句 3.获取执行SQL语句的结果 4.事务的控制查看全部
-
准备工作。查看全部
-
标签功能 mybatis中的其他常用标签,<choose><when></when></choose>, <where>, <set>, <trim>, <collection>, <association>, <sql>(用来定义部分常量), <include>(引用sql标签中定义的内容)查看全部
-
java_and_java //通过配置文件获取数据库连接信息 Reader reader = Resources.getResourceAsReader("config/Configuration.xml"); //通过配置信息构建一个SqlSessionFactory SqlSessionFactory sqlSessionFactory = new SqlSessioFactoryBuilder.build(reader); //通过sqlSessionFactory打开一个数据库会话 SqlSession sqlSession = sqlSeesionFactory.openSession();查看全部
-
JS中if (content) ,content 为null或'',为undefined或为数字0,则在if条件判断里为false查看全部
举报
0/150
提交
取消