Error attempting to get column 'content' from result set
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mysql字段属性也就varchar,mediumtext和int,前两个在java里映射的字段都是VARCHAR,后面应该是INTEGER,我在实体类声明Integer和int都试过了,直接查询所有返回Activity类型的就不行,用了map,返回类型是hashmap,也都没设置啥,就可以了???