한글컬럼을 사용중인 mySQL에서 myBatis를 이용한 동적 SQL 문제

navidad의 이미지

안녕하세요.

mySQL 한글컬럼 테이블을 사용하고, myBatis를 처음 사용해보는 초보입니다.

첫번째 if test에서 오류가 발생하고 있는 것 같은데, 해결책을 모르겠습니다.

먼저 경험하신 분들께 조언을 부탁드립니다.

발생한 오류메시지는..
org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: org.apache.ibatis.builder.BuilderException: Error evaluating expression '사용자ID != null'. Cause: org.apache.ibatis.ognl.ExpressionSyntaxException: Malformed OGNL expression: 사용자ID != null [org.apache.ibatis.ognl.TokenMgrError: Lexical error at line 1, column 1. Encountered: "\uc0ac" (49324), after : ""]

Mapper 설정은 아래 코드와 같습니다.

<?xml version="1.0" encoding="UTF-8"?>
 
... 중략 ...
 
<mapper ...>
 
<update id="updateDevice" parameterType="myBatisTest.model.Device">
    <![CDATA[
    update HD디바이스 
    ]]>
    <set>
        <if test="사용자ID != null"><![CDATA[사용자ID = #{사용자ID},]]></if>
        <if test="사용언어 != null"><![CDATA[사용언어 = #{사용언어},]]></if>
        <if test="운영체제구분 != null"><![CDATA[운영체제구분 = #{운영체제구분},]]></if>
        <if test="운영체제버전 != null"><![CDATA[운영체제버전 = #{운영체제버전},]]></if>
        <if test="App버전 != null"><![CDATA[App버전 = #{App버전}]]></if>
    </set>
    <![CDATA[
    where 디바이스일련번호 = #{디바이스일련번호}
    ]]>
</mapper>
익명 사용자의 이미지

아래와 같이 바꿔보세요. null check는 등호로 할 수 없습니다.

사용자ID is not null

navidad의 이미지

답변 감사합니다.

myBatis 메뉴얼에 따르면 null 비교를 != 로 처리하는 예가 있어 참고한 거구요. ( http://mybatis.github.io/mybatis-3/ko/dynamic-sql.html )

제 생각에는 오류메시지중 Malformed OGNL expression: 사용자ID != null [org.apache.ibatis.ognl.TokenMgrError: Lexical error at line 1, column 1. Encountered: "\uc0ac" (49324), after : "" 부분을 보면 "사용자ID != null" 부분의 첫 시작인 "사"에 해당하는 유니코드 \uc0ac 가 문제의 원인인 것 같습니다.

한글 컬럼을 사용중이라 어쩔수 없이 한글이 나온것인데, 한글 컬럼을 유지하면서 위 문제를 피해갈 수 있는 방법이 있는지 문의드립니다.

=================================
나비아빠

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.