首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

java.sql.SQLException:packet is larger than max_allowed_packet from server confi

2014-01-26 
java.sql.SQLException:packet is larger than max_allowed_packet from server configuration 程序在Eclip

java.sql.SQLException:packet is larger than max_allowed_packet from server configuration 程序在Eclipse中运行没有问题,但是放到resin上用jsp调用时,当查询内容较多时就出现这个问题,应该不是mysql设置的问题吧?如果是的话在Eclipse运行时应该也会出错。
------解决方法--------------------------------------------------------
mysql服务器端默认的max_allowed_packet是1M,你可以通过下面的命令修改默认的大小:
mysqld --max_allowed_packet=16M


详细的说明请看http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html

        

热点排行