1
0
mirror of synced 2025-12-13 09:47:55 +08:00

🚚 移动文件

This commit is contained in:
Yangkai.Shen
2019-10-09 15:46:26 +08:00
parent 8eceb0f1cd
commit a2ce42c0f3
10 changed files with 21 additions and 29 deletions

View File

@@ -21,8 +21,8 @@ import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.EnumUtil;
import cn.hutool.core.util.ReflectUtil;
import cn.hutool.core.util.StrUtil;
import com.xkcoding.justauth.properties.ExtendProperties;
import com.xkcoding.justauth.properties.JustAuthProperties;
import com.xkcoding.justauth.autoconfigure.ExtendProperties;
import com.xkcoding.justauth.autoconfigure.JustAuthProperties;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import me.zhyd.oauth.cache.AuthStateCache;

View File

@@ -15,7 +15,7 @@
*
*/
package com.xkcoding.justauth.properties;
package com.xkcoding.justauth.autoconfigure;
import lombok.Getter;
import lombok.Setter;

View File

@@ -15,7 +15,7 @@
*
*/
package com.xkcoding.justauth.properties;
package com.xkcoding.justauth.autoconfigure;
import lombok.Getter;
import lombok.Setter;

View File

@@ -15,9 +15,9 @@
*
*/
package com.xkcoding.justauth;
package com.xkcoding.justauth.autoconfigure;
import com.xkcoding.justauth.properties.JustAuthProperties;
import com.xkcoding.justauth.AuthRequestFactory;
import lombok.extern.slf4j.Slf4j;
import me.zhyd.oauth.cache.AuthStateCache;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;

View File

@@ -15,7 +15,7 @@
*
*/
package com.xkcoding.justauth.properties;
package com.xkcoding.justauth.autoconfigure;
import lombok.Getter;
import lombok.Setter;

View File

@@ -15,10 +15,9 @@
*
*/
package com.xkcoding.justauth;
package com.xkcoding.justauth.autoconfigure;
import com.xkcoding.justauth.cache.RedisStateCache;
import com.xkcoding.justauth.properties.JustAuthProperties;
import com.xkcoding.justauth.support.cache.RedisStateCache;
import lombok.extern.slf4j.Slf4j;
import me.zhyd.oauth.cache.AuthDefaultStateCache;
import me.zhyd.oauth.cache.AuthStateCache;

View File

@@ -15,9 +15,9 @@
*
*/
package com.xkcoding.justauth.cache;
package com.xkcoding.justauth.support.cache;
import com.xkcoding.justauth.properties.CacheProperties;
import com.xkcoding.justauth.autoconfigure.CacheProperties;
import lombok.RequiredArgsConstructor;
import me.zhyd.oauth.cache.AuthStateCache;
import org.springframework.data.redis.core.RedisTemplate;

View File

@@ -4,7 +4,7 @@
"name": "justauth.type",
"type": "java.util.Map<me.zhyd.oauth.config.AuthSource,me.zhyd.oauth.config.AuthConfig>",
"description": "JustAuth 配置.",
"sourceType": "com.xkcoding.justauth.properties.JustAuthProperties"
"sourceType": "com.xkcoding.justauth.autoconfigure.JustAuthProperties"
}
],
"hints": [
@@ -129,4 +129,4 @@
]
}
]
}
}

View File

@@ -1,2 +1,2 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.xkcoding.justauth.JustAuthAutoConfiguration
com.xkcoding.justauth.autoconfigure.JustAuthAutoConfiguration