Spring Boot
文章平均质量分 54
Smile_Tcode
一枚前端程序员,热衷于项目架构的设计,致力于优雅的代码编写。
展开
-
SpringBoot解决Cookie设置(无需修改谷歌浏览器)
SpringBoot解决Cookie设置(无需修改谷歌浏览器)1、Ajax 设置 withCredentials = true。2、SpringBoot后端在Controller层传 Cookie。 @RequestMapping("/login") @ResponseBody public String login( HttpServletResponse response) throws UnsupportedEncodingException { Cooki原创 2021-01-25 23:43:47 · 2647 阅读 · 0 评论 -
SpringBoot 基础项目打jar包供其他项目使用
SpringBoot 基础项目打jar包供其他项目使用一、背景 构建私有项目的jar包,只能核心人员开发,其他人员仅仅只能调用。任何脱离此jar包的项目都不能运行。二、简要过程: (1)A 项目修改打包依赖<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-pl原创 2021-01-07 19:12:37 · 1602 阅读 · 0 评论 -
SpringBoot 多模块框架搭建遇到的坑(一)Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2
SpringBoot 多模块项目遇到的坑(一)一、问题:ERROR: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project demo-web-b: Input length = 1 -> [Help 1]---------------------------------------------------------原创 2021-01-07 14:13:12 · 257 阅读 · 0 评论