mybatis-plus批處理IService的實現(xiàn)示例
一、pom文件引入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1.tmp</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>3.3.1.tmp</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
二、Controller層
@RequestMapping("/user")
@RestController
public class UserController {
@Autowired
UserInfoService userInfoService;
@RequestMapping("/add")
public void addUser() {
userInfoService.addUser();
}
}
三、IService層(此處請確保繼承的是 mybatisplus下的 IService,上述的UserInfoEntity為實體類)
import com.baomidou.mybatisplus.extension.service.IService;
import com.entity.UserInfoEntity;
public interface UserInfoService extends IService<UserInfoEntity>{
public void addUser();
}
四、ServiceImpl(UserInfoDao和UserInfoEntitty分別為業(yè)務(wù)對應(yīng)的UserEntityDao接口和UserInfoEntitty實體類)
@Service
public class UserInfoServiceImpl extends ServiceImpl<UserInfoDao, UserInfoEntity> implements UserInfoService{
@Override
public void addUser() {
Random r=new Random(100);
String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
Random random=new Random();
Set<UserInfoEntity> entityList=new HashSet<UserInfoEntity>();
for(int i=0;i<1000000;i++) {
UserInfoEntity entity=new UserInfoEntity();
entity.setAge(r.nextInt());
int number=random.nextInt(62);
entity.setName(""+str.charAt(number));
entity.setEvaluate("good");
entity.setFraction(r.nextLong());
entityList.add(entity);
}
this.saveBatch(entityList);
}
五、entity層
@TableName("user_info")//@TableName中的值對應(yīng)著表名
@Data
public class UserInfoEntity {
/**
* 主鍵
* @TableId中可以決定主鍵的類型,不寫會采取默認(rèn)值,默認(rèn)值可以在yml中配置
* AUTO: 數(shù)據(jù)庫ID自增
* INPUT: 用戶輸入ID
* ID_WORKER: 全局唯一ID,Long類型的主鍵
* ID_WORKER_STR: 字符串全局唯一ID
* UUID: 全局唯一ID,UUID類型的主鍵
* NONE: 該類型為未設(shè)置主鍵類型
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 姓名
*/
private String name;
/**
* 年齡
*/
private Integer age;
/**
* 技能
*/
private String skill;
/**
* 評價
*/
private String evaluate;
/**
* 分?jǐn)?shù)
*/
private Long fraction;
六、Mapper接口層
@Mapper
public interface UserInfoDao extends BaseMapper<UserInfoEntity>{
}
到此這篇關(guān)于mybatis-plus批處理IService的實現(xiàn)示例的文章就介紹到這了,更多相關(guān)mybatis-plus批處理IService內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Java實現(xiàn)對兩個List快速去重并排序操作示例
這篇文章主要介紹了Java實現(xiàn)對兩個List快速去重并排序操作,結(jié)合實例形式較為詳細(xì)的分析了Java針對list的遍歷、去重、排序相關(guān)操作技巧與注意事項,需要的朋友可以參考下2018-07-07
淺談關(guān)于Java正則和轉(zhuǎn)義中\(zhòng)\和\\\\的理解
這篇文章主要介紹了淺談關(guān)于Java正則和轉(zhuǎn)義中\(zhòng)\和\\\\的理解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-08-08

