瀏覽代碼

:fire: 移除代码或文件:移除对Spring Dev Tools的支持,精简资源服务器配置文件

lishangbu 6 年之前
父節點
當前提交
c38b43fae1

+ 0 - 1
pigx-common/pigx-common-cache/src/main/resources/META-INF/spring-devtools.properties

@@ -1 +0,0 @@
-restart.include.pigx-common-log=/pigx-common-cache[\\w-]+\.jar

+ 0 - 1
pigx-common/pigx-common-core/src/main/resources/META-INF/spring-devtools.properties

@@ -1 +0,0 @@
-restart.include.pigx-common-core=/pigx-common-core[\\w-]+\.jar

+ 0 - 1
pigx-common/pigx-common-core/src/main/resources/META-INF/spring.provides

@@ -1 +0,0 @@
-provides: hutool-all, spring-cloud-starter-openfeign, feign-okhttp, spring-boot-starter-data-redis, jackson-datatype-jsr310

+ 0 - 1
pigx-common/pigx-common-log/src/main/resources/META-INF/spring-devtools.properties

@@ -1 +0,0 @@
-restart.include.pigx-common-log=/pigx-common-log[\\w-]+\.jar

+ 0 - 1
pigx-common/pigx-common-security/src/main/resources/META-INF/spring-devtools.properties

@@ -1 +0,0 @@
-restart.include.pigx-common-security=/pigx-common-security[\\w-]+\.jar

+ 0 - 1
pigx-common/pigx-common-security/src/main/resources/META-INF/spring.provides

@@ -1 +0,0 @@
-provides: pigx-common-core, spring-cloud-starter-security

+ 0 - 1
pigx-upms/pigx-upms-api/src/main/resources/META-INF/spring-devtools.properties

@@ -1 +0,0 @@
-restart.include.pigx-upms-api=/pigx-upms-api[\\w-]+\.jar

+ 0 - 1
pigx-upms/pigx-upms-api/src/main/resources/META-INF/spring.provides

@@ -1 +0,0 @@
-provides: mybatis-plus, pigx-common-security

+ 0 - 40
pigx-visual/pigx-activiti/src/main/java/com/pig4cloud/pigx/act/config/ResourceServerConfigurer.java

@@ -1,40 +0,0 @@
-/*
- *    Copyright (c) 2018-2025, lengleng All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the pig4cloud.com developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: lengleng (wangiegie@gmail.com)
- */
-
-package com.pig4cloud.pigx.act.config;
-
-import com.pig4cloud.pigx.common.security.component.BaseResourceServerConfigurerAdapter;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer;
-
-/**
- * @author lengleng
- * @date 2018/6/22
- */
-@Configuration
-public class ResourceServerConfigurer extends BaseResourceServerConfigurerAdapter {
-
-	/**
-	 * 重写不需要调用feign 获取 userdetils
-	 *
-	 * @param resources
-	 */
-	@Override
-	public void configure(ResourceServerSecurityConfigurer resources) {
-		notGetUser(resources);
-	}
-}

+ 0 - 39
pigx-visual/pigx-codegen/src/main/java/com/pig4cloud/pigx/codegen/config/ResourceServerConfigurer.java

@@ -1,39 +0,0 @@
-/*
- *    Copyright (c) 2018-2025, lengleng All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the pig4cloud.com developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: lengleng (wangiegie@gmail.com)
- */
-
-package com.pig4cloud.pigx.codegen.config;
-
-import com.pig4cloud.pigx.common.security.component.BaseResourceServerConfigurerAdapter;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer;
-
-/**
- * @author lengleng
- * @date 2018/6/22
- */
-@Configuration
-public class ResourceServerConfigurer extends BaseResourceServerConfigurerAdapter {
-	/**
-	 * 重写实现,不需要调用feign 获取 userDetailsService
-	 *
-	 * @param resources
-	 */
-	@Override
-	public void configure(ResourceServerSecurityConfigurer resources) {
-		notGetUser(resources);
-	}
-}

+ 0 - 39
pigx-visual/pigx-daemon/src/main/java/com/pig4cloud/pigx/daemon/config/ResourceServerConfigurer.java

@@ -1,39 +0,0 @@
-/*
- *    Copyright (c) 2018-2025, lengleng All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the pig4cloud.com developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: lengleng (wangiegie@gmail.com)
- */
-
-package com.pig4cloud.pigx.daemon.config;
-
-import com.pig4cloud.pigx.common.security.component.BaseResourceServerConfigurerAdapter;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer;
-
-/**
- * @author lengleng
- * @date 2018/6/22
- */
-@Configuration
-public class ResourceServerConfigurer extends BaseResourceServerConfigurerAdapter {
-	/**
-	 * 重写实现,不需要调用feign 获取 userdetils
-	 *
-	 * @param resources
-	 */
-	@Override
-	public void configure(ResourceServerSecurityConfigurer resources) {
-		notGetUser(resources);
-	}
-}