为什么我在插入数据时收到SqlMapException?

时间:2011-04-08 14:39:41

标签: java mysql ibatis ibator

我正在尝试使用iBatis插入一些用户以联系我们的形式发送的数据。

我正在使用Liferay / Spring MVC / iBatis / MySQL设置,但我认为问题是由iBatis配置引起的。每当我尝试插入数据时,我都会在日志中看到异常:

com.ibatis.sqlmap.client.SqlMapException: There is no statement named contactus.ibatorgenerated_insert in this SqlMap.
        at com.ibatis.sqlmap.engine.impl.SqlMapExecutorDelegate.getMappedStatement(SqlMapExecutorDelegate.java:231)
        at com.ibatis.sqlmap.engine.impl.SqlMapExecutorDelegate.insert(SqlMapExecutorDelegate.java:367)
        at com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl.insert(SqlMapSessionImpl.java:82)
        at com.ibatis.sqlmap.engine.impl.SqlMapClientImpl.insert(SqlMapClientImpl.java:58)

ibator生成的sql map 包含一个id为“ibatorgenerated_insert”的插入查询,命名空间为“contact_us”

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMapConfig>
<sqlMap namespace="contactus">
        <insert id="ibatorgenerated_insert" parameterClass="contactUs.dao.ContactUs">
            <!--
            WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
            This element was generated on Thu Apr 07 15:17:57 BST 2011.
            -->
            insert into contactus (email_address, first_name, last_name, company, timestamp,
            status, message)
            values (#emailAddress:VARCHAR#, #firstName:VARCHAR#, #lastName:VARCHAR#, #company:VARCHAR#,
            #timestamp:TIMESTAMP#, #status:VARCHAR#, #message:LONGVARCHAR#)
            <selectKey resultClass="java.lang.Integer" keyProperty="contactusId">
                SELECT LAST_INSERT_ID()
            </selectKey>
        </insert>
    </sqlMap>
</sqlMapConfig>

什么可能导致iBatis不在XML文件中找到该语句?我假设它找到了文件,因为它没有报告任何其他类型的错误。

2 个答案:

答案 0 :(得分:4)

我希望您已在 SqlMapConfig.xml 中指定 contactus.xml 文件,其中包含插入语句,如下所示

<sqlMapConfig>
    <properties resource="Connection.properties"/>
    <!-- Configure a built-in transaction manager.  If you're using an        app server, you probably want to use its transaction manager        and a managed datasource -->
<settings cacheModelsEnabled="false" enhancementEnabled="true"
  lazyLoadingEnabled="true" maxRequests="32" maxSessions="1"
    useStatementNamespaces="false" />
  <transactionManager type="JDBC">
    <dataSource type="JNDI">
        <property name="DataSource" value="${connection.datasource}"/>
    </dataSource>
  </transactionManager>
 <!-- List the SQL Map XML files. They can be loaded from the        classpath, as they are here (com.domain.data...) -->
    <sqlMap resource="contactus.xml"/>
</sqlMapConfig>

没有命名空间的呼叫。如下所示

sqlMapper.insert("ibatorgenerated_insert",params);

答案 1 :(得分:1)

尝试将以下内容添加到<sqlMapConfig>元素:

<settings useStatementNamespaces="true"/>