
SpringBoot
文章平均质量分 51
CNNandRNN
额。
展开
-
MybatisPlus自定义sql多表关联分页条件查询
@MybatisPlus自定义sql多表关联分页条件查询 mp封装了crud但是对应复杂sql还是需要自己定义 网上对于多表分页查询的mp描述不是很清楚,我在这里重新写一篇文章。 1.数据库准备 需要实现的sql是两表关联条件查询 select um.`nickname` ,aa.`comment_counts`,aa.`gmt_create`, aa.`id`,aa.`summary`,aa.`title`,aa.`view_counts`,aa.`weight` from atai_article aa原创 2021-04-15 11:08:24 · 1302 阅读 · 0 评论 -
SpringBoot文件上传与下载
实现文件上传与下载功能,主要涉及5个文件,maven配置文件pom.xml ,application.yml配置文件,用户交互界面index.jsp,UpanddownController控制层代码,启动文件Application。 github下载地址https://github.com/1731lin/springbootUpDownload 1.maven配置文件pom.xml 通过maven统一管理jar包,导入工程时需要导入对应的jar包才能正常运行。这里使用了文件上传工具。 <de原创 2020-06-27 22:32:59 · 165 阅读 · 0 评论