亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis條件if?test怎么使用枚舉值

發布時間:2022-06-07 09:18:35 來源:億速云 閱讀:543 作者:iii 欄目:開發技術

本篇內容主要講解“Mybatis條件if test怎么使用枚舉值”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Mybatis條件if test怎么使用枚舉值”吧!

Mybatis條件if test使用枚舉值

1.正確

package com.weather.weatherexpert.common.utils;
/**
 * <p>Title: </p>
 * <p>Description: </p>
 *
 * @Author 
 * @CreateTime 
 */
public enum City {
    XINZHOU(100002,"忻州"),
    DATONG(100003,"大同"),
    TAIYUAN(100001,"太原");
 
    private final Integer code;
    private final String name;
 
    City(Integer value, String desc) {
        this.code = value;
        this.name = desc;
    }
 
    public Integer getCode() {
        return code;
    }
 
    public String getName() {
        return name;
    }
}

xml:

<!--<if test="cityName == @com.weather.weatherexpert.common.utils.City.XINZHOU@getName">&lt;!&ndash;wrong,java.lang.ClassNotFoundException: Unable to resolve class: com.weather.weatherexpert.common.utils.City.XINZHOU&ndash;&gt;-->
<!--<if test="cityName == @com.weather.weatherexpert.common.utils.City@XINZHOU@getName">&lt;!&ndash;wrong,[org.apache.ibatis.ognl.ParseException: Encountered " "@" "@ "" at line 1, column 65.&ndash;&gt;-->
<if test="cityName == @com.weather.weatherexpert.common.utils.City@XINZHOU.getName"><!--right-->
	area_table
</if>
 
where 1=1
<if test="cityName == @com.weather.weatherexpert.common.utils.City@XINZHOU.getName"><!--right-->
	and city_name=#{cityName}
</if>	

Mybatis條件if?test怎么使用枚舉值

2.錯誤

package com.weather.weatherexpert.common.utils;
/**
 * <p>Title: </p>
 * <p>Description: </p>
 *
 * @Author
 * @CreateTime
 */
public class CityClass {
    public static enum CityEnum {
 
        XINZHOU(100002, "忻州"),
        DATONG(100003, "大同"),
        TAIYUAN(100001, "太原");
 
        private final Integer code;
        private final String name;
 
        CityEnum(Integer value, String desc) {
            this.code = value;
            this.name = desc;
        }
 
        public Integer getCode() {
            return code;
        }
 
        public String getName() {
            return name;
        }
    }
}

xml:

/*        Caused by: org.apache.ibatis.builder.BuilderException: Error evaluating expression
        'cityName == @com.weather.weatherexpert.common.utils.CityClass@CityEnum.XINZHOU.getName'. Cause: org.apache.ibatis.ognl.OgnlException:
        Could not get static field CityEnum from class com.weather.weatherexpert.common.utils.CityClass [java.lang.NoSuchFieldException: CityEnum]*/
        <if test="cityName == @com.weather.weatherexpert.common.utils.CityClass@CityEnum.XINZHOU.getName"><!--wrong-->
            area_table
        </if>	

可見,直接定義的枚舉類可以正常使用,在類中定義的枚舉類這樣使用會報錯,可能方法還沒有找到。

如下正確:

 <if test="cityName == @com.a.b.c.CityClass$CityEnum@XINZHOU.getName"><!--right-->
  name = #{username}
 </if>

Mybatis里使用枚舉Enum判斷

<if test="dtEnum == @com.xxx.xxx.TestTypeEnum@HOUR">
  DATE_FORMAT(TM,'%Y-%m-%d %H') as keyStr,
</if>

TestTypeEnum定義如下

  • HOUR("hour"),

  • DAY("day"),

  • MONTH("month"),

  • YEAR("year");

到此,相信大家對“Mybatis條件if test怎么使用枚舉值”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永寿县| 高密市| 襄城县| 宝清县| 洛扎县| 绿春县| 延安市| 柯坪县| 融水| 龙陵县| 田林县| 天门市| 广饶县| 安溪县| 万荣县| 潼关县| 富锦市| 石屏县| 正阳县| 阿勒泰市| 湖南省| 苏尼特右旗| 绥阳县| 南召县| 林口县| 开平市| 乌什县| 彰武县| 获嘉县| 班戈县| 中阳县| 郯城县| 通城县| 京山县| 黑河市| 象山县| 凤城市| 东乌| 彰化市| 泽库县| 饶平县|