E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
SqlMapClient
【Ibatis】(十一)、java.util.Map作为parameterClass和resultClass
parameterClass*/publicProductgetProductMap(Mapmap)throwsSQLException{init();Productproduct=(Product)
sqlMapClient
.queryForObject
xitong
·
2012-08-06 21:00
parameter
【Ibatis】(十)、xmlResultName详解
映射文件:Xml代码DAO层:Java代码publicObjectgetXmlData(intid)throwsSQLException{init();Objectobj=(Object)
sqlMapClient
.queryForObject
xitong
·
2012-08-06 21:00
ibatis
【Ibatis】(六)、动态SQL查询
DAO层:Java代码publicListgetProductDynamic2(Productproduct)throwsSQLException{init();Listlist=(List)
sqlMapClient
.queryForLis
xitong
·
2012-08-06 20:00
ibatis
Spring整合Ibatis之SqlMapClientDaoSupport
SqlMapClient
对象是iBATIS中的主要对象,我们可以通过配置让spring来管理
SqlMapClient
对象的创建,继而整合iBatis和Spring。
Gillian_Male
·
2012-08-03 11:00
ibaties
服务器启动时报Error creating bean with name '
sqlMapClient
' defined in class .
服务器一启动就报如下的错误,当时依照错误提示很是不解: 1.Caused by: org.springframework.beans.factory.BeanCreationException: 2.Could not autowire field: private com.huawei.support.dao.DaoManager com.huawei.support.att
peteronline
·
2012-08-02 11:00
client
Error creating bean with name '
sqlMapClient
' defined in ServletContext resource
在spring 3.0.5.RELEASE 版本下, ibatis 的版本为 <dependency> <groupId>com.ibatis</groupId> <artifactId>ibatis2-sqlmap</artifactId>
andinker
·
2012-08-01 13:00
java
spring
tomcat
ibatis
iBatis java.lang.RuntimeException: Error setting property
系统运行时报如下错误: [java.sql.PreparedStatement]org.springframework.jdbc.UncategorizedSQLException:
SqlMapClient
showlike
·
2012-07-31 16:00
ibatis传入多个参数
一个整型等等,例如: selectpwdfromuserinfo whereuserid=#userid# 在方法体里可以用:password=(String)
sqlMapClient
.queryForObject
guojunjian
·
2012-06-29 07:00
sql
String
list
ibatis
HashMap
ORA-00060: 等待资源时检测到死锁--oracle 数据库表死锁异常
现场环境的异常如下: org.springframework.dao.DeadlockLoserDataAccessException:
SqlMapClient
operation; SQL [];
meteor_1988
·
2012-06-27 09:00
oracle
ibatis的insert方法的返回值
返回值竟然是id ibatis的
SqlMapClient
的insert方法是有返回值的,类型是object,包裹的其实就是刚刚插入的自增长字段的值。
Mydwr
·
2012-06-20 09:00
ibatis
org.springframework.jdbc.UncategorizedSQLException:
SqlMapClient
operation; uncategorized SQLExcepti
错误:org.springframework.jdbc.UncategorizedSQLException:SqlMapClientoperation;uncategorizedSQLExceptionforSQL[];SQLstate[null];errorcode[0];---Theerroroccurredincom/sinosoft/para/conf/A_T_4_SqlMap.xml.-
伯猫大师
·
2012-06-18 16:43
数据库报错集锦
spring,struts2,ibatis
nbsp; 使用ibatis 首先导入一个ibatis jar包,然后在项目src下,添加了两个xml文件,一个是user.xml映射文件,另一个是 ibatis的基本配置文件
sqlMapClient
.xml
songzhan
·
2012-06-17 21:00
spring
struts2
ibatis
ibatis源码浅析- 初探
ibatis核心类 SqlMapExecutor:定义了数据库curd操作api SqlMapTransactionManager:主要定义了事务管理功能
SqlMapClient
:继承SqlMapExecutor
java2000_wl
·
2012-06-10 10:00
sql
数据库
api
ibatis
SqlMapClient
对象
code="java"]这个对象是iBatis操作数据库的接口(执行CRUD等操作),它也可以执行事务管理等操作。这个类是我们使用iBATIS的最主要的类。它是线程安全的。通常,将它定义为单例。(与hibernate中sessionFactory的定义类似)。如: import java.io.Reader; import com.ibatis.common.r
lhbthanks
·
2012-06-10 10:00
client
客户端
SqlMapClient
IBatis框架对于SQLMap的客户端提供了两种不同的调用。一种是纯粹利用SQLMapAPI来进行,而另一种则是使用封装了基本实现的IBatisDAO框架。在这里将主要介绍SQLMapAPI,而在随后的IBatis与Struts协同工作这一节中将会使用IBatisDAO框架。SQLMapAPI主要提供了如下这些功能: 配置一个SQLMap。 执行SQL语句完成添加、更
xiangjun
·
2012-06-08 17:00
client
Spring中使用ibatis完整分析
首先看Spring中beans的配置:1) 第一个bean作为配置连接数据库,设置DriverManager以及用户名密码2) 第二个bean就是选择
SqlMapClient
,并且填写该xml的路径:XmlSqlMapClientBuilder
gps梦想
·
2012-05-15 11:00
spring 3.0.5 与ibatis2.3整合要点
:spring3.0.5所有jar文件,以及dbcp数据连接池、log4j等的相关jar文件 ibatisjar文件1、根据dataSource和configuration创建一个
sqlMapClient
sinmo
·
2012-05-04 14:36
spring
数据
ibatis-spring sql文件配置
个人观点,诸多不妥之处,希望多多指正: ibatis整合spring的方式主要在于
sqlMapClient
的配置,而
sqlMapClient
的配置中,sqlmap文件的配置,也是重要的一环,下面对我遇到的
fresh_daily
·
2012-05-02 14:00
spring
ibatis
SqlMapClient
ibatis浅入
1.
SqlMapClient
:该类是ibatis的核心类,所有的基于数据库的操作都由该类完成。
new_restart
·
2012-04-25 13:00
ibatis
ibatis教程_查询所有的对象(对student进行增删改查)
CRUD借助
sqlMapClient
中的方法: queryForObject queryForList insert delete update Student.xml内容:
snn1410
·
2012-04-20 17:00
iBatis的
SqlMapClient
.insert()方法的返回值
Objectcom.ibatis.sqlmap.client.SqlMapExecutor.queryForObject(Stringid,ObjectparameterObject)throwsSQLExceptionExecutesamappedSQLINSERTstatement.Insertisabitdifferentfromotherupdatemethods,asitprovides
frinder
·
2012-04-17 12:00
java.lang.IllegalArgumentException: No
SqlMapClient
specified异常解决方案
原因是在创建DAO对象时使用了 new xxxDaoImpl()的方法,直接使用注解或配置方式取对应的bean即可 如下: WebApplicationContext beanFactory = WebApplicationContextUtils.getRequiredWebApplicationContext(sc); WriterLogDaowriterLogDao =
aniyo
·
2012-04-17 10:00
ORA-06544: PL/SQL: internal error, arguments: [55916], [], [], [], [], [], [], [
org.springframework.web.util.NestedServletException:Request processing failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
SqlMapClient
chenhua_1984
·
2012-04-12 17:00
arguments
IBatis Mysql 获得刚插入记录的ID
SELECTLAST_INSERT_ID() publicIntegerinsertPerson(Personperson)throwsSQLException{try{return(Integer)
sqlMapClient
.insert
gigiouter
·
2012-04-09 11:00
exception
mysql
ibatis
null
Integer
insert
SqlMapClient
对象
SqlMapClient
对象这个对象是iBatis操作数据库的接口(执行CRUD等操作),它也可以执行事务管理等操作。这个类是我们使用iBATIS的最主要的类。它是线程安全的。通常,将它定义为单例。
hu_wen
·
2012-04-06 16:49
DBA
mysql错误-UncategorizedSQLException 1449
错误: UncategorizedSQLException:
SqlMapClient
operation; uncategorized SQLException for SQL []; SQL state
cuityang
·
2012-03-31 01:00
SQLException
Ibatis原理分析
Ibatis框架架构如下图所示: 外部JavaApplication调用
SqlMapClient
接口,经过SqlMapSession、SqlMapExecutorDelegate等实现类,通过PersistentObject
kjfcpua
·
2012-03-27 22:00
sql
数据库
框架
jdbc
ibatis
javabeans
SqlMapClientTemplate
SqlMapClient
] 区别
IBATIS[SqlMapClientTemplate
SqlMapClient
] 区别 2011-03-07 16:17:19| 分类: 工作 | 标签:工作 
firebata
·
2012-02-15 23:00
ibatis
Spring + ibatis Error creating bean with name '
sqlMapClient
'的问题
<bean id="
sqlMapClient
" class="org.spri
cqian59420
·
2012-02-10 18:00
spring
ibatis
IBatis中如何获取sqlId和传入参数对应的缓存Key值
的缓存机制,在DAO添加缓存的方法给开发人员使用,可以通过以下的代码获取对应的Key值: SqlMapClientImpl sci = (SqlMapClientImpl)this.
sqlMapClient
chenjc_it
·
2012-01-10 09:00
ibatis
IBatis中如何获取sqlId和传入参数对应的缓存Key值
的缓存机制,在DAO添加缓存的方法给开发人员使用,可以通过以下的代码获取对应的Key值: SqlMapClientImpl sci = (SqlMapClientImpl)this.
sqlMapClient
chenjc_it
·
2012-01-10 09:00
ibatis
IBatis如何获取解析后的SQL语句和占位符参数
获取IBatis中指定SQLID的SQL解析结果(根据传入参数解析后的SQL语句和占位符参数数组)
SqlMapClient
本身是没有方法获取SQL的解析结果的,必须将
SqlMapClient
chenjc_it
·
2012-01-06 10:00
ibatis
IBatis如何获取解析后的SQL语句和占位符参数
获取IBatis中指定SQLID的SQL解析结果(根据传入参数解析后的SQL语句和占位符参数数组)
SqlMapClient
本身是没有方法获取SQL的解析结果的,必须将
SqlMapClient
chenjc_it
·
2012-01-06 10:00
ibatis
ibatis 与spring3整合
配置ibates实际上和配置hibernate差不多,就是事物、dataSource、
sqlMapClient
等的配置。 为了简单我是在一个配置文件中配置了所有的配置,
wcp88888888
·
2011-12-28 13:00
Spring3
ibatis 与spring3整合
配置ibates实际上和配置hibernate差不多,就是事物、dataSource、
sqlMapClient
等的配置。 为了简单我是在一个配置文件中配置了所有的配置,
wcp88888888
·
2011-12-28 13:00
Spring3
ibatis uncategorized SQLException for SQL []SQL state [99999] error code [17026]
Caused by: org.springframework.jdbc.UncategorizedSQLException:
SqlMapClient
operation; uncategorized
hehaibo
·
2011-12-27 16:00
SQLException
Ibatis 传空值发现的批量更新问题
sqlMapClient
.startBatch(); for(....){ }
sqlMapClient
.executeBatch();
Sev7en_jun
·
2011-12-23 11:00
ibatis
Ibatis 传空值发现的批量更新问题
sqlMapClient
.startBatch(); for(....){ }
sqlMapClient
.executeBatch();
Sev7en_jun
·
2011-12-23 11:00
ibatis
Ibatis 传空值发现的批量更新问题
sqlMapClient
.startBatch(); for(....){ }
sqlMapClient
.executeBatch();
Sev7en_jun
·
2011-12-23 11:00
ibatis
解决Spring导致iBatis缓存失效问题
版本中也存在类似问题) iBatis 2.3.4.726(2.3.x版本都适用)起因: 使用Spring管理iBatis实例,标准方式采用SqlMapClientFactoryBean创建
SqlMapClient
Foxswily
·
2011-12-13 10:00
ibatis
ibatis sql map api学习
sql map api》 SQL Map API提供4个功能:配置一个SQL Map,执行SQL update操作,执行查询语句以取得一个对象,以及执行查询语句取得一个对象的List
SqlMapClient
gjtiancai
·
2011-12-08 15:00
ibatis
ibatis
SqlMapClient
对象这个对象是iBatis操作数据库的接口(执行CRUD等操作),它也可以执行事务管理等操作。这个类是我们使用iBATIS的最主要的类。它是线程安全的。通常,将它定义为单例。
zlotus
·
2011-11-28 17:00
ibatis
SSI(Struts2+Spring2.5+Ibatis.2.16)框架之数据源的配置.
下面来说一下我们工作中用到的数据源配置步骤: 1>> 在spring的applicationContext.xml文件中配置数据源: 下面是ibatis的
sqlMapClient
zhou363667565
·
2011-11-21 14:00
struts2
SSI(Struts2+Spring2.5+Ibatis.2.16)框架之数据源的配置.
下面来说一下我们工作中用到的数据源配置步骤: 1>> 在spring的applicationContext.xml文件中配置数据源: 下面是ibatis的
sqlMapClient
zhou363667565
·
2011-11-21 14:00
struts2
org.springframework.beans.factory.BeanCreationException
1,问题现象org.springframework.beans.factory.BeanCreationException: Error creating bean with name '
sqlMapClient
MyCrazy
·
2011-11-18 10:00
java
xml
springframework
beans
spring整合ibatis事务管理
SqlMapClient
对象是iBATIS中的主要对象,我们可以通过配置让spring来管理
SqlMapClient
对象的创建。
chenkangxian
·
2011-11-17 14:00
spring
ibatis
事务管理
SQL MAP配置*
转自:http://www.cnblogs.com/dwjaissk/archive/2006/03/07/344999.html例如:(二)例如:(二)元素元素用于配置和优化利用XML配置文件创建的
SqlMapClient
benjaminp
·
2011-11-15 09:44
SQL
ibatis
持久层框架
SQL MAP配置*
:http://www.cnblogs.com/dwjaissk/archive/2006/03/07/344999.html 例如:(二) 例如:(二)元素元素用于配置和优化利用XML配置文件创建的
SqlMapClient
BenjaminP
·
2011-11-15 09:00
sql
jdbc
cache
HashMap
Class
insert
为什么SqlMapClientFactoryBean与
SqlMapClient
类型不同也可被注入
...在上面的配置片段中可以,类ShopDaoRelease是我们具体的一个dao实现,其继承了SqlMapClientDaoSupport,后者暴露出一个
sqlMapClient
属性,用于接受Spring
rj042
·
2011-11-13 20:00
spring
bean
object
properties
ibatis
interface
iBatis应用之获取表的元数据
为程序员提供了较大的灵活性,今天就展示一在iBatis中获取表元数据的例子, 所谓表的元数据就就是关于表的数据的数据,在一个特殊的应用场合需要查出了指定SQL中包含的字段的信息, 包括:字段类型和长度定义, 我这里的
sqlMapClient
tuyuan
·
2011-11-08 19:00
orm
ibatis
mybatis
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他