Mybatis的@select和@SelectProvider注解方式動(dòng)態(tài)SQL語(yǔ)句解讀
Mybatis中提供一種非常簡(jiǎn)便的開(kāi)發(fā)方式,通過(guò)注解的方式寫(xiě)SQL語(yǔ)句,它還可以實(shí)現(xiàn)多種寫(xiě)法,
下面就了解一下如何通過(guò)注解方式實(shí)現(xiàn)動(dòng)態(tài)SQL的整個(gè)過(guò)程:
配置xml文件:Spring+Mybatis
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- 封裝數(shù)據(jù)源,連接數(shù)據(jù)庫(kù)屬性 --> <bean id="dataSouce" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="net.sf.log4jdbc.DriverSpy"></property> <property name="url" value="jdbc:mysql://localhost:3306/mybas"></property> <property name="username" value="root"></property> <property name="password" value="scott"></property> </bean> <!-- 創(chuàng)建SqlSessionFactory對(duì)象 --> <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 數(shù)據(jù)庫(kù)連接信息來(lái)源于 dataSource --> <property name="dataSource" ref="dataSouce"></property> </bean> <!-- 掃描器相當(dāng)于mybatis.xml中 mappers下package標(biāo)簽,掃描com.bjsxt.mapper包后會(huì)給對(duì)應(yīng)接口創(chuàng)建對(duì)象 --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <!-- 要掃描哪個(gè)包 --> <property name="basePackage" value="com.gx.service"></property> <!-- 和factory產(chǎn)生關(guān)系 --> <property name="sqlSessionFactory" ref="factory"></property> </bean> <!-- 由spring管理service實(shí)現(xiàn)類(lèi) account實(shí)現(xiàn)類(lèi)中的set方法 --> <bean id="accounts" class="com.gx.serviecImpl.accountserviceImpl"> <property name="account" ref="accountservice"></property> </bean> </beans>
創(chuàng)建實(shí)體類(lèi)
package com.gx.pojo;
public class account {
private int accountID;
private String num;
private String password;
private Double balance;
private String name;
public int getAccountID() {
return accountID;
}
public void setAccountID(int accountID) {
this.accountID = accountID;
}
public String getNum() {
return num;
}
public void setNum(String num) {
this.num = num;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Double getBalance() {
return balance;
}
public void setBalance(Double balance) {
this.balance = balance;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "account [accountID=" + accountID + ", num=" + num
+ ", password=" + password + ", balance=" + balance + ", name="
+ name + "]";
}
}接口文件類(lèi)(注解寫(xiě)法)
里面包含有增刪改查,注意@的注解,有所不同;
@Param("")給參數(shù)取別名;
package com.gx.service;
import java.util.List;
import mapper.SqlContext;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.SelectProvider;
import org.apache.ibatis.annotations.Update;
import com.gx.pojo.account;
public interface accountservice {
@SelectProvider(method = "selectaccount", type = SqlContext.class)
List<account> show(account account);
@Select("select * from account ")
List<account> showTwo();
@Select("select * from account where num=${number }")
List<account> showThree(@Param("number") String number);
@Select("select * from account where name='${accounts.name}'")
List<account> showFour(@Param("accounts")account accounts);
@Select("SELECT account.*,accounttow.number FROM account JOIN accounttow ON accounttow.accountID=account.num ")
List<account> showFive();
@Insert("INSERT account(num,password,balance,name) VALUES('${ac.num}','${ac.password}',${ac.balance},'${ac.name}');")
boolean insertAccount(@Param("ac")account account);
@Delete("DELETE FROM account WHERE name='${ac.name}'")
boolean delectAccount(@Param("ac")account account);
@Update("UPDATE account SET balance=${ac.balance} WHERE NAME='${ac.name}'")
boolean updataAccount(@Param("ac")account account);
}@SelectProvider(method = "selectaccount", type = SqlContext.class)
@SelectProvider一般用于多條件查詢(xún)使用,多表查詢(xún)可以直接使用@Select去·寫(xiě)如showFive;
多條件查詢(xún)可以在類(lèi)文件中寫(xiě),Mybatis支持在類(lèi)文件中寫(xiě)動(dòng)態(tài)SQL;
一個(gè)類(lèi)可以有多個(gè)SQL,type 是類(lèi)文件名稱(chēng),method是方法指定里面的SQL;
SQL類(lèi)的寫(xiě)法
package mapper;
import org.apache.ibatis.jdbc.SQL;
import com.gx.pojo.account;
public class SqlContext {
public String selectaccount(final account account){
return new SQL(){
{ SELECT("*");
FROM("account");
if(account.getNum()!=null && account.getNum()!="0"){
WHERE(" num=#{num } ");
}
if (account.getName()!=null && account.getName()!="") {
WHERE(" name=#{name } ");
}}
}.toString();
}
}serviceImpl(實(shí)現(xiàn)接口)
package com.gx.serviecImpl;
import java.util.List;
import com.gx.pojo.account;
import com.gx.service.accountservice;
public class accountserviceImpl implements accountservice{
private accountservice ac;
public accountservice getAccount(){
return ac;
}
//依賴(lài)注入時(shí)必須的setter方法
public void setAccount(accountservice accountservices){
this.ac=accountservices;
}
@Override
public List<account> show(account account) {
// TODO Auto-generated method stub
return ac.show(account);
}
@Override
public List<account> showTwo() {
// TODO Auto-generated method stub
return ac.showTwo();
}
@Override
public List<account> showThree(String num) {
// TODO Auto-generated method stub
return ac.showThree(num);
}
@Override
public List<account> showFour(account accounts) {
// TODO Auto-generated method stub
return ac.showFour(accounts);
}
@Override
public boolean insertAccount(account account) {
// TODO Auto-generated method stub
return ac.insertAccount(account);
}
@Override
public boolean delectAccount(account account) {
// TODO Auto-generated method stub
return ac.delectAccount(account);
}
@Override
public boolean updataAccount(account account) {
// TODO Auto-generated method stub
return ac.updataAccount(account);
}
@Override
public List<account> showFive() {
// TODO Auto-generated method stub
return ac.showFive();
}
}Servlet:使用(Spring+Mybatis)
創(chuàng)建工廠和實(shí)例化方法,并且調(diào)用方法;
package com.gx.servlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import com.gx.pojo.account;
import com.gx.serviecImpl.accountserviceImpl;
public class accountServlet extends HttpServlet {
//私有化serviceImpl實(shí)現(xiàn)類(lèi)
private accountserviceImpl accountservice;
@Override
public void init() throws ServletException {
WebApplicationContext ac = WebApplicationContextUtils
.getRequiredWebApplicationContext(getServletContext());
accountservice = ac.getBean("accounts", accountserviceImpl.class);
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doPost(req, resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
req.setCharacterEncoding("utf-8");
resp.setCharacterEncoding("UTF-8");
account account=new account();
account.setNum("4");
account.setBalance(1000.0);
account.setName("吳六");
account.setPassword("4");
System.out.println("我是show方法"+accountservice.show(account));
System.out.println("我是showTwo方法"+accountservice.showTwo());
System.out.println("我是showThree方法"+accountservice.showThree("2"));
System.out.println("我是showFour方法"+accountservice.showFour(account));
System.out.println("我是insertAccount方法"+accountservice.insertAccount(account));
System.out.println("我是updataAccount方法"+accountservice.updataAccount(account));
System.out.println("我是delectAccount方法"+accountservice.delectAccount(account));
req.setAttribute("list", accountservice.show(account));
req.getRequestDispatcher("/index.jsp").forward(req, resp);
}
/**
*
*/
private static final long serialVersionUID = 1L;
}總結(jié)
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
spring整合shiro框架的實(shí)現(xiàn)步驟記錄
Shiro是一個(gè)強(qiáng)大易用的Java安全框架,提供了認(rèn)證、授權(quán)、加密和會(huì)話管理等功能。下面這篇文章主要給大家介紹了關(guān)于spring整合shiro框架的實(shí)現(xiàn)步驟,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下2018-05-05
Java 并發(fā)編程ArrayBlockingQueue的實(shí)現(xiàn)
這篇文章主要介紹了Java 并發(fā)編程ArrayBlockingQueue的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-02-02
Java?easyExcel的復(fù)雜表頭多級(jí)表頭導(dǎo)入
最近在項(xiàng)目開(kāi)發(fā)中遇到的一個(gè)excel復(fù)雜表頭的導(dǎo)入數(shù)據(jù)庫(kù)操作,下面這篇文章主要給大家介紹了關(guān)于Java?easyExcel的復(fù)雜表頭多級(jí)表頭導(dǎo)入的相關(guān)資料,需要的朋友可以參考下2022-06-06
SpringBoot中使用MyBatis-Plus實(shí)現(xiàn)分頁(yè)接口的詳細(xì)教程
MyBatis-Plus是一個(gè)MyBatis的增強(qiáng)工具,在MyBatis的基礎(chǔ)上只做增強(qiáng)不做改變,為簡(jiǎn)化開(kāi)發(fā)、提高效率而生,在SpringBoot項(xiàng)目中使用MyBatis-Plus可以大大簡(jiǎn)化分頁(yè)邏輯的編寫(xiě),本文將介紹如何在 SpringBoot項(xiàng)目中使用MyBatis-Plus實(shí)現(xiàn)分頁(yè)接口2024-03-03
Java中實(shí)現(xiàn)List分隔成子List詳解
大家好,本篇文章主要講的是Java中實(shí)現(xiàn)List分隔成子List詳解,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話記得收藏一下2022-01-01
controller函數(shù)中參數(shù)列表使用多個(gè)@RequestBody問(wèn)題
這篇文章主要介紹了controller函數(shù)中參數(shù)列表使用多個(gè)@RequestBody問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-04-04
關(guān)于Elasticsearch封裝公共索引增刪改查
索引是Elasticsearch中存儲(chǔ)數(shù)據(jù)的邏輯單元,類(lèi)似于關(guān)系數(shù)據(jù)庫(kù)中的表,它包含多個(gè)文檔,每個(gè)文檔都是一個(gè)結(jié)構(gòu)化的JSON數(shù)據(jù)格式,在實(shí)際應(yīng)用中,索引的使用與配置可以依據(jù)不同的方案進(jìn)行,例如在Spring Boot項(xiàng)目中,可以選擇自動(dòng)配置或者手動(dòng)編寫(xiě)配置類(lèi)2024-10-10

