摘要: 解决方案: 方式一.服务后台配置 1.直接禁用csrf保护。在configure(HttpSecurity http)方法中添加 http.csrf().disable(); 2.重写csrf保护策略。 在configure(HttpSecurity http)方法中添加 http.csrf().r 阅读全文
posted @ 2020-11-12 17:01 午火39 阅读(1738) 评论(0) 推荐(1)
摘要: 假如我们现在在dev分支上,刚开发完项目,执行了下列命令 git add .git commit -m ‘dev'git push -u origin dev然后我们要把dev分支的代码合并到master分支上 该如何?首先切换到master分支上 git checkout master如果是多人开 阅读全文
posted @ 2020-11-12 14:12 午火39 阅读(968) 评论(0) 推荐(0)
摘要: String filePath = null; String os = System.getProperty("os.name"); if (os != null && os.toLowerCase().startsWith("windows")) { filePath = System.getPr 阅读全文
posted @ 2020-11-12 10:37 午火39 阅读(2636) 评论(0) 推荐(0)