linux ibatis sql中文乱码,iBATIS sql语句中中文乱码解决

本文介绍了如何解决使用iBATIS时遇到的中文乱码问题。问题表现为sql语句中的中文在iBATIS配置后显示为问号,导致查询失败。解决方案包括创建监听器设置字符集为GBK,修改web.xml配置,以及确保应用编码为GBK。通过这些步骤,成功解决了查询中的乱码问题,使得应用能够正常显示和处理中文数据。
摘要由CSDN通过智能技术生成

由于sql语句直接在数据库里面可以查到数据,但是通过ibatis配置以后查不到数据,后经检查发现因为sql语句中的中文出现乱码引起的,例如 select a,b from table where c='合格' 通过iBATIS配置后在后台打印出来是select a,b from table where c='????',从而导致查不出数据,解决方案如下:

1、创建监听器,主要是标红的语句

package com.dhx.common;

import java.nio.charset.Charset;

import javax.servlet.ServletContextAttributeEvent;

import javax.servlet.ServletContextAttributeListener;

/**

* Application Lifecycle Listener implementation class ChartSetListen

*

*/

public class ChartSetListen implements ServletContextAttributeListener {

/**

* Default constructor.

*/

public ChartSetListen() {

// TODO Auto-generated constructor stub

com.ibatis.common.resources.Resources.setCharset(Charset.forName("gbk"));

}

/**

* @see ServletContextAttributeListener#attributeAdded(ServletContextAttributeEvent)

*/

public void attributeAdded(ServletContextAttributeEvent arg0) {

// TODO Auto-generated method stub

}

/**

* @see ServletContextAttributeListener#attributeReplaced(ServletContextAttributeEvent)

*/

public void attributeReplaced(ServletContextAttributeEvent arg0) {

// TODO Auto-generated method stub

}

/**

* @see ServletContextAttributeListener#attributeRemoved(ServletContextAttributeEvent)

*/

public void attributeRemoved(ServletContextAttributeEvent arg0) {

// TODO Auto-generated method stub

}

}

2、在webxml中配置

com.dhx.common.ChartSetListen

注意:配置位置需要配置到Spring的ContextLoaderListener之前

3、将gbk编码配置成

encoding

gbk

4、重新部署应用,问题解决

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值