跳至主要內容
FreeCode

FreeCode

记录翻山的过程。

网站

分享一些收集到的好用工具、学习网站、社区等。


zzz大约 3 分钟收集推荐
配置

配置

RuoYi-Vue前端项目基础上面增加一些基础配置

Eslint

通过使用ESLint 检查代码,并做修复。

推荐使用antfu-eslint-config作为默认配置,在此基础上面根据自己的需要进行调整。使用方式如下:


zzz大约 3 分钟前端nodeconfigeslint
介绍页

介绍页

提示

一个代码的搬运工!!!

这是一个PWA测试


zzz小于 1 分钟
Dubbo

Dubbo

待完善...

SPI

协议

过滤器

DefaultFuture


zzz小于 1 分钟后端DubboRPC
Netty

Netty

待完善...


zzz小于 1 分钟后端Netty网络通信
Groovy

Groovy

待完善...


zzz小于 1 分钟
Python

Python

待完善...


zzz小于 1 分钟
Spring Security

介绍

针对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>

zzz小于 1 分钟后端SpringSpring Security