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

由于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、重新部署应用,问题解决

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值