【提交】项目提交

This commit is contained in:
任维炳
2025-04-17 15:37:37 +08:00
commit 4d48a93138
5250 changed files with 349360 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
{
"groups": [
{
"name": "exam.security",
"type": "pc.exam.pp.framework.security.config.SecurityProperties",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
}
],
"properties": [
{
"name": "exam.security.mock-enable",
"type": "java.lang.Boolean",
"description": "mock 模式的开关",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
},
{
"name": "exam.security.mock-secret",
"type": "java.lang.String",
"description": "mock 模式的密钥 一定要配置密钥,保证安全性",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
},
{
"name": "exam.security.password-encoder-length",
"type": "java.lang.Integer",
"description": "PasswordEncoder 加密复杂度,越高开销越大",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
},
{
"name": "exam.security.permit-all-urls",
"type": "java.util.List<java.lang.String>",
"description": "免登录的 URL 列表",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
},
{
"name": "exam.security.token-header",
"type": "java.lang.String",
"description": "HTTP 请求时,访问令牌的请求 Header",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
},
{
"name": "exam.security.token-parameter",
"type": "java.lang.String",
"description": "HTTP 请求时,访问令牌的请求参数 初始目的:解决 WebSocket 无法通过 header 传参,只能通过 token 参数拼接",
"sourceType": "pc.exam.pp.framework.security.config.SecurityProperties"
}
],
"hints": []
}

View File

@@ -0,0 +1,3 @@
pc.exam.pp.framework.security.config.ExamSecurityAutoConfiguration
pc.exam.pp.framework.security.config.ExamWebSecurityConfigurerAdapter
pc.exam.pp.framework.operatelog.config.ExamOperateLogConfiguration