.authorizeRequests()
//**为通配符
.antMatchers("/captchaImage", "/websocket/**").anonymous()
.antMatchers("/user/**").permitAll()
...大约 3 分钟
.authorizeRequests()
//**为通配符
.antMatchers("/captchaImage", "/websocket/**").anonymous()
.antMatchers("/user/**").permitAll()
spring security配置configure方法下有一项是formLogin,通过此项来配置表单登录/登出。项目中通常会用自定义的登陆页面覆盖默认的页面。本文全面分析了loginPage和loginrPocessingUrl之配置。
先抛一个配置的例子:
.formLogin()
.loginPage("/login")
.loginProcessingUrl("/form")
说到定时任务,比较容易想到的是quartz定时框架。而一些简单轻量的任务使用框架未免杀鸡用牛刀了。我们也可以通过ScheduledExecutorService接口实现。
https://www.cnblogs.com/kimi9py/p/5697211.html 《Activiti工作流实战教程》 https://xiaozhuanlan.com/activiti 《ireport实战教程》 https://xiaozhuanlan.com/ireport?rel=6923152725