学习Springboot
文章平均质量分 57
today有点骚
这个作者很懒,什么都没留下…
展开
-
前后端解析消息
前端解析:wedSocketMessageHandler(e:MessageEvent){ let data = this.messageFilter(e.data); let message = JSON.parse(data); if(data==null){ return } if(message.action=="edit"){ if(message.status==原创 2021-01-04 22:31:06 · 775 阅读 · 0 评论 -
Springboot后台打包成jar后成功读取后台根目录文件
有时间Springboot后台项目打成jar包后,运行时不能读取根目录文件,报错。可能是window环境和linux环境不同,所以要要一种比较通用的读取后台外部文件的办法。 @RequestMapping(value = "/file", method = RequestMethod.GET) public ResultJson getFileByDirectory(@RequestParam String fileDirectory){ byte[] buffer = n原创 2020-11-04 21:17:37 · 960 阅读 · 0 评论 -
Springboot 后台接收并存储pdf文件到项目根目录-jar包可运行 windows、linux通用
试了很多网上说的后台保存文件办法,但是打包成jar包后,保存文件就出错,终于自己在综合多个帖子后才有了以下代码 @RequestMapping(value = "/uploadPDF/{node_key}", method = RequestMethod.POST) public ResultJson upload(@RequestParam("file") MultipartFile file, @PathVariable int node_key){ if (file.原创 2020-11-04 21:12:32 · 1025 阅读 · 0 评论 -
使用SpringBoot连接MySQL数据库,快速上手
使用SpringBoot连接MySQL数据库,快速上手原创 2019-03-09 15:55:12 · 36206 阅读 · 8 评论 -
Springboot+mybatis整合,实现rest服务,http、json传输
项目结构如下:Controller 控制层 entity 实体层 mapper数据操作层 service 业务逻辑层application.yml application-dev.yml 配置文件idea=>spring initializer=>next配置application.yml及application-dev.y...转载 2019-03-15 10:48:55 · 995 阅读 · 0 评论