免费视频淫片aa毛片_日韩高清在线亚洲专区vr_日韩大片免费观看视频播放_亚洲欧美国产精品完整版

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
ibatis
從昨天下午到現(xiàn)在,一直在進(jìn)行ibatis環(huán)境下的單元測(cè)試,在測(cè)試中發(fā)現(xiàn)了一個(gè)奇怪的現(xiàn)象。
我們知道在sqlMap的insert語句中,一般需要一個(gè)bean類來作為parameterClass的值,一般
來說,這個(gè)bean只要一些簡(jiǎn)單的get/set方法就可以了,但是在測(cè)試中卻發(fā)現(xiàn)這樣一個(gè)問題:
如果該bean類繼承java.util.ArrayList,那么這時(shí)再進(jìn)行sqlMapClient的insert則會(huì)報(bào)錯(cuò)。
(當(dāng)然了,如果不繼承java.util.ArrayList類就不會(huì)出錯(cuò),繼承其它類也不會(huì)出錯(cuò))
下面將出現(xiàn)錯(cuò)誤的環(huán)境數(shù)據(jù)列出來:
1,sqlMap

<insert id="simpleObjectTest" parameterClass="com.smartdot.galaxy.portal.resources.test.IbatisTestObject">
        insert into zhangbo_test (id,name
        values(#id#,#name#)
</insert>
2,IbatisTestObject?.java

public class IbatisTestObject extends ArrayList {

    private String id;
    private String name;
    public IbatisTestObject() {
        super();
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}
3,junit test

        ...
        IbatisTestObject obj=new IbatisTestObject();
        obj.setId("33");
        obj.setName("55");
        sqlMap.insert("simpleObjectTest",obj);
        ...
4,數(shù)據(jù)庫(kù)中字段id,name均為varchar2

5,出錯(cuò)信息


com.ibatis.common.jdbc.exception.NestedSQLException:   
--- The error occurred in com/smartdot/galaxy/portal/resources/test/resources_sql_map.xml.  
--- The error occurred while preparing the mapped statement for execution.  
--- Check the simpleObjectTest.  
--- Check the parameter map.  
--- Cause: java.lang.NumberFormatException: For input string: "i"
Caused by: java.lang.NumberFormatException: For input string: "i"
    at com.ibatis.sqlmap.engine.mapping.statement.GeneralStatement.executeUpdate(GeneralStatement.java:90)
    at com.ibatis.sqlmap.engine.impl.SqlMapExecutorDelegate.insert(SqlMapExecutorDelegate.java:442)
    at com.ibatis.sqlmap.engine.impl.SqlMapSessionImpl.insert(SqlMapSessionImpl.java:85)
    at com.ibatis.sqlmap.engine.impl.SqlMapClientImpl.insert(SqlMapClientImpl.java:57)
    at com.smartdot.galaxy.portal.resources.test.ResourcesSqlMapTest.insertIbatisSimpleObj(ResourcesSqlMapTest.java:84)
    at com.smartdot.galaxy.portal.resources.test.ResourcesSqlMapTest.test(ResourcesSqlMapTest.java:48)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at junit.framework.TestCase.runTest(TestCase.java:154)
    at junit.framework.TestCase.runBare(TestCase.java:127)
    at junit.framework.TestResult$1.protect(TestResult.java:106)
    at junit.framework.TestResult.runProtected(TestResult.java:124)
    at junit.framework.TestResult.run(TestResult.java:109)
    at junit.framework.TestCase.run(TestCase.java:118)
    at junit.framework.TestSuite.runTest(TestSuite.java:208)
    at junit.framework.TestSuite.run(TestSuite.java:203)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
Caused by: java.lang.NumberFormatException: For input string: "i"

       (更多略)

所以建議大家不要在Ibatis中的bean不要繼承java.util.ArrayList,而是使用復(fù)合模式。
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
運(yùn)行Junit 出現(xiàn) java.lang.ClassNotFoundException
談一談JUnit神奇的報(bào)錯(cuò) java.lang.Exception:No tests found matching
利用junit對(duì)springMVC的Controller進(jìn)行測(cè)試
org.hibernate.tool.schema.spi.SchemaManagementException Unable to execute schema management to 異常的解決
通向架構(gòu)師的道路(第二十五天)SSH的單元測(cè)試與dbunit的整合
hibernate4 二級(jí)緩存demo實(shí)例
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服