写一段mybatis用于删除的 not in的语句
时间: 2023-03-29 13:03:31 浏览: 82
好的,以下是一段使用 MyBatis 进行 not in 删除的语句:
```
<delete id="deleteNotIn" parameterType="java.util.List">
DELETE FROM table_name
WHERE id NOT IN
<foreach collection="list" item="id" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
```
其中,`table_name` 是需要删除数据的表名,`id` 是该表的主键字段名。`list` 是一个 `java.util.List` 类型的参数,其中包含了需要保留的主键值。这个语句会删除表中所有主键值不在 `list` 中的数据。
希望这个回答能够帮到你!
相关问题
写一段mybatis not in的语句
以下是一个 MyBatis 中使用 not in 的示例语句:
<select id="selectUsersByAgeNotIn" resultType="User">
SELECT * FROM users WHERE age NOT IN
<foreach item="item" collection="ageList" open="(" separator="," close=")">
#{item}
</foreach>
</select>
其中,ageList 是一个 List<Integer> 类型的参数,表示不包含的年龄列表。这个语句将返回年龄不在 ageList 中的所有用户。
用springboot,vue,mybatis和elementUl实现上传PDF文件到数据库,需要上传到数据库的内容有文件名,文件上传时间,文件路径,上传者编号。请告诉我springboot配置文件,domain代码,controller代码,service代码,前端vue和element代码,mybatis代码和数据库建表语句,并用注释讲解
由于涉及到多个文件和代码,建议您在学习本文时,将代码和文件分别保存在不同的位置,以便更好地跟随本文进行操作。
1. 配置文件
在Spring Boot中,我们可以通过application.properties或application.yml配置文件来配置我们的应用程序。以下是application.properties文件中需要添加的内容:
```
# 数据库连接信息
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
# MyBatis配置信息
mybatis.type-aliases-package=com.example.demo.entity
mybatis.mapper-locations=classpath:mapper/*.xml
# 文件上传配置信息
spring.servlet.multipart.max-file-size=50MB
spring.servlet.multipart.max-request-size=50MB
```
上述配置文件中,我们首先配置了数据库连接信息,包括数据库连接驱动、数据库url、用户名和密码。接着,我们配置了MyBatis相关的信息,包括实体类所在的包和Mapper文件所在的位置。最后,我们配置了文件上传的最大文件大小和最大请求大小。
2. Domain代码
在我们的项目中,我们需要定义一个实体类来对应数据库中的表。以下是我们的实体类代码:
```
public class PdfFile {
private Long id; // 主键
private String fileName; // 文件名
private Date uploadTime; // 上传时间
private String filePath; // 文件路径
private Long uploaderId; // 上传者编号
// getter and setter
}
```
上述代码中,我们定义了一个PdfFile类,该类有五个属性,分别对应数据库中的表字段。其中,id为主键,fileName为文件名,uploadTime为上传时间,filePath为文件路径,uploaderId为上传者编号。
3. Controller代码
在我们的项目中,我们需要定义一个Controller来接收前端请求,并调用Service层的方法来处理请求。以下是我们的Controller代码:
```
@RestController
@RequestMapping("/pdf")
public class PdfFileController {
@Autowired
private PdfFileService pdfFileService;
/**
* 上传PDF文件
*/
@PostMapping("/upload")
public Result upload(@RequestParam("file") MultipartFile file, Long uploaderId) {
try {
String fileName = file.getOriginalFilename(); // 获取文件名
String filePath = "D:/upload/"; // 上传文件保存的路径
File dest = new File(filePath + fileName);
file.transferTo(dest); // 将文件保存到本地
PdfFile pdfFile = new PdfFile();
pdfFile.setFileName(fileName);
pdfFile.setFilePath(filePath + fileName);
pdfFile.setUploaderId(uploaderId);
pdfFileService.insert(pdfFile); // 将文件信息保存到数据库中
return Result.success("上传成功!");
} catch (IOException e) {
e.printStackTrace();
return Result.fail("上传失败!");
}
}
}
```
上述代码中,我们首先使用@RestController和@RequestMapping注解来定义一个Controller,我们将该Controller映射到“/pdf”路径下。接着,我们注入了PdfFileService对象,以便在方法中调用Service层的方法。在Controller中,我们定义了一个@PostMapping注解的方法,该方法接收一个MultipartFile类型的file参数和一个Long类型的uploaderId参数,表示上传文件和上传者的编号。在方法中,我们首先获取上传文件的文件名,然后将文件保存到本地,接着创建一个PdfFile对象,并将文件名、文件路径和上传者编号设置到该对象中,最后调用PdfFileService中的insert方法将文件信息保存到数据库中。
4. Service代码
在我们的项目中,我们需要定义一个Service层来处理业务逻辑。以下是我们的Service代码:
```
@Service
public class PdfFileService {
@Autowired
private PdfFileMapper pdfFileMapper;
/**
* 保存PDF文件信息
*/
public void insert(PdfFile pdfFile) {
pdfFile.setUploadTime(new Date()); // 设置上传时间为当前时间
pdfFileMapper.insert(pdfFile); // 插入数据到数据库中
}
}
```
上述代码中,我们使用@Service注解来定义一个Service层,注入了PdfFileMapper对象。在Service层中,我们定义了一个insert方法,该方法接收一个PdfFile类型的参数,表示需要保存到数据库中的文件信息。在方法中,我们首先将上传时间设置为当前时间,然后调用PdfFileMapper中的insert方法将文件信息保存到数据库中。
5. 前端Vue和Element代码
在我们的项目中,我们需要使用Vue和Element来实现前端页面。以下是我们的Vue和Element代码:
```
<template>
<div class="pdf-upload">
<el-upload
class="upload-demo"
:auto-upload="false"
:on-change="handleChange"
:file-list="fileList"
:before-upload="beforeUpload"
:on-remove="handleRemove"
action="/pdf/upload"
>
<el-button size="small" type="primary">上传文件</el-button>
<div slot="tip" class="el-upload__tip">只能上传PDF文件,且不超过50MB</div>
</el-upload>
</div>
</template>
<script>
export default {
data() {
return {
fileList: [],
};
},
methods: {
handleChange(file) {
this.fileList.push(file.raw);
},
beforeUpload(file) {
const isPDF = file.type === 'application/pdf';
const isLt50M = file.size / 1024 / 1024 < 50;
if (!isPDF) {
this.$message.error('只能上传PDF文件!');
}
if (!isLt50M) {
this.$message.error('上传文件大小不能超过50MB!');
}
return isPDF && isLt50M;
},
handleRemove(file) {
const index = this.fileList.indexOf(file);
this.fileList.splice(index, 1);
},
},
};
</script>
```
上述代码中,我们首先定义了一个el-upload组件,并设置了auto-upload、on-change、file-list、before-upload、on-remove和action等属性。在methods中,我们定义了handleChange、beforeUpload和handleRemove三个方法,分别用于处理文件选择、文件上传前和文件删除事件。在beforeUpload方法中,我们判断上传的文件是否为PDF格式,以及文件大小是否超过50MB,如果不符合要求,我们就会弹出错误提示。最后,我们将上传的文件保存到fileList中,在文件上传事件中,我们将fileList中的文件信息发送到后台。
6. MyBatis代码和数据库建表语句
在我们的项目中,我们需要使用MyBatis来操作数据库。以下是我们的MyBatis代码和数据库建表语句:
### MyBatis代码
```
@Mapper
public interface PdfFileMapper {
/**
* 插入PDF文件信息
*/
void insert(PdfFile pdfFile);
}
```
上述代码中,我们使用@Mapper注解来定义一个PdfFileMapper接口,在接口中定义了一个insert方法,该方法用于将PdfFile对象插入到数据库中。
### 数据库建表语句
```
CREATE TABLE `pdf_file` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`file_name` varchar(255) NOT NULL COMMENT '文件名',
`upload_time` datetime NOT NULL COMMENT '上传时间',
`file_path` varchar(255) NOT NULL COMMENT '文件路径',
`uploader_id` bigint(20) NOT NULL COMMENT '上传者编号',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='PDF文件表';
```
上述数据库建表语句中,我们定义了一个pdf_file表,该表包括id、file_name、upload_time、file_path和uploader_id五个字段,其中id为主键。
以上就是使用Spring Boot、Vue、Element UI和MyBatis实现上传PDF文件到数据库的全部代码和配置。
阅读全文