Error attempting to get column 'content' from result set

发布于 2022-09-12 03:20:01 字数 1484 浏览 20 评论 0

org.springframework.jdbc.UncategorizedSQLException: Error attempting to get column 'content' from result set.  Cause: java.sql.SQLException: An SQLException was provoked by the following failure: java.lang.NumberFormatException: For input string: "<div class="topic-richtext"> 
 <p>￧ᆱᆵ¥ヘネ₩ネᄋ¥ᄂヨ₩ᄡᄏ¥ハᄄ￯ᄐ゚</p> 
</div>"
; uncategorized SQLException; SQL state [null]; error code [0]; An SQLException was provoked by the following failure: java.lang.NumberFormatException: For input string: "<div class="topic-richtext"> 
 <p>￧ᆱᆵ¥ヘネ₩ネᄋ¥ᄂヨ₩ᄡᄏ¥ハᄄ￯ᄐ゚</p> 
</div>"; nested exception is java.sql.SQLException: An SQLException was provoked by the following failure: java.lang.NumberFormatException: For input string: "<div class="topic-richtext"> 
 <p>￧ᆱᆵ¥ヘネ₩ネᄋ¥ᄂヨ₩ᄡᄏ¥ハᄄ￯ᄐ゚</p> 
</div>"
<select id="queryAllActivity" resultType="Activity">
        select * from campus_entertainment.activity limit 0,10;
    </select>

实体类也是封装了全部的,基本没问题的呀,还有content在mysql的类型是mediumtext,对应java的类型为string,为什么突然就查不出全部了,报错提示content有问题,但是只查一个select content是查得出来了,也不会乱码的,不知道为什么了,求解呀!



太奇怪了,我用万能的Map就可以解决了!!
<resultMap id="SomeActivityMap" type="java.util.HashMap"/>
    <select id="querySomeActivity" resultMap="SomeActivityMap">
        select * from campus_entertainment.activity limit 0,10;
    </select>

只是我想不通啊??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

脱离于你 2022-09-19 03:20:01

mysql字段属性也就varchar,mediumtext和int,前两个在java里映射的字段都是VARCHAR,后面应该是INTEGER,我在实体类声明Integer和int都试过了,直接查询所有返回Activity类型的就不行,用了map,返回类型是hashmap,也都没设置啥,就可以了???

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文