分享一些收集到的好用工具、学习网站、社区等。
2023年12月10日大约 3 分钟
阿里云效是阿里云出品的一站式企业级研发协作平台,提供从需求到开发、测试、部署
https://cr.console.aliyun.com/
https://help.aliyun.com/document_detail/202437.html?spm=a2cl9.flow_devops2020_goldlog_detail.0.0.32e624aeFAJCj1
针对spring3.x以xml方式集成security
配置文件
<sec:http access-decision-manager-ref="accessDecisionManager" auto-config="true" entry-point-ref="authenticationEntryPoint">
<sec:logout />
<sec:anonymous granted-authority="A_ANONYMOUS" />
<sec:custom-filter ref="authenticationFilter" before="FORM_LOGIN_FILTER"/>
<sec:custom-filter ref="filterSecurityInterceptor" before="FILTER_SECURITY_INTERCEPTOR"/>
<sec:custom-filter ref="switchRoleProcessingFilter" before="SWITCH_USER_FILTER"/>
<sec:form-login login-processing-url="/j_spring_security_login"/>
</sec:http>