🎉 4.3.0.RELEASE 多租户支持线程模式指定租户ID与忽略租户

This commit is contained in:
smallchill 2024-11-07 19:56:49 +08:00
parent 35f70db177
commit 74669cebe5
239 changed files with 443 additions and 408 deletions

4
.gitignore vendored
View File

@ -25,3 +25,7 @@ Thumbs.db
*.war *.war
*.ear *.ear
/target /target
# Flattened pom
.flattened-pom.xml
/**/.flattened-pom.xml

View File

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img src="https://img.shields.io/badge/Release-V4.2.0-green.svg" alt="Downloads"> <img src="https://img.shields.io/badge/Release-V4.3.0-green.svg" alt="Downloads">
<img src="https://img.shields.io/badge/JDK-17+-green.svg" alt="Build Status"> <img src="https://img.shields.io/badge/JDK-17+-green.svg" alt="Build Status">
<img src="https://img.shields.io/badge/license-Apache%202-blue.svg" alt="Build Status"> <img src="https://img.shields.io/badge/license-Apache%202-blue.svg" alt="Build Status">
<img src="https://img.shields.io/badge/Spring%20Cloud-2023-blue.svg" alt="Coverage Status"> <img src="https://img.shields.io/badge/Spring%20Cloud-2023-blue.svg" alt="Coverage Status">
@ -33,12 +33,12 @@
|----------------------|------------| |----------------------|------------|
| Java | 17+ | | Java | 17+ |
| NodeJS | 18+ | | NodeJS | 18+ |
| Spring | 6.1.12 | | Spring | 6.1.14 |
| Spring Boot | 3.2.9 | | Spring Boot | 3.2.10 |
| Spring Cloud | 2023.0.3 | | Spring Cloud | 2023.0.3 |
| Spring Cloud Alibaba | 2023.0.1.0 | | Spring Cloud Alibaba | 2023.0.1.2 |
| Nacos Alibaba | 2.3.2 | | Nacos Alibaba | 2.3.2 |
| Mybatis Plus | 3.5.7 | | Mybatis Plus | 3.5.8 |
## 工程结构 ## 工程结构

View File

@ -1,3 +1,5 @@
# 网络问题无法下载可以改为阿里云镜像
# FROM registry.cn-hangzhou.aliyuncs.com/bladex-repo/alpine-java:openjdk17_cn_slim
FROM bladex/alpine-java:openjdk17_cn_slim FROM bladex/alpine-java:openjdk17_cn_slim
MAINTAINER bladejava@qq.com MAINTAINER bladejava@qq.com
@ -10,6 +12,6 @@ EXPOSE 8010
ADD ./target/blade-auth.jar ./app.jar ADD ./target/blade-auth.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -8,12 +8,11 @@
<parent> <parent>
<artifactId>SpringBlade</artifactId> <artifactId>SpringBlade</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<artifactId>blade-auth</artifactId> <artifactId>blade-auth</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
@ -21,43 +20,35 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-cloud</artifactId> <artifactId>blade-core-cloud</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-secure</artifactId> <artifactId>blade-core-secure</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-log</artifactId> <artifactId>blade-starter-log</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-social</artifactId> <artifactId>blade-starter-social</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-user-api</artifactId> <artifactId>blade-user-api</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-swagger</artifactId> <artifactId>blade-starter-swagger</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<!-- Captcha --> <!-- Captcha -->
<dependency> <dependency>
<groupId>com.github.whvcse</groupId> <groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId> <artifactId>easy-captcha</artifactId>
<version>${captcha.version}</version>
</dependency> </dependency>
<!-- MySQL --> <!-- MySQL -->
<dependency> <dependency>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,30 +5,26 @@
<parent> <parent>
<artifactId>SpringBlade</artifactId> <artifactId>SpringBlade</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-launch</artifactId> <artifactId>blade-core-launch</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-loadbalancer</artifactId> <artifactId>blade-starter-loadbalancer</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.dreamlu</groupId> <groupId>net.dreamlu</groupId>
<artifactId>mica-auto</artifactId> <artifactId>mica-auto</artifactId>
<version>${mica.auto.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -10,6 +10,6 @@ EXPOSE 80
ADD ./target/blade-gateway.jar ./app.jar ADD ./target/blade-gateway.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>SpringBlade</artifactId> <artifactId>SpringBlade</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-gateway</artifactId> <artifactId>blade-gateway</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
@ -19,7 +18,6 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-launch</artifactId> <artifactId>blade-core-launch</artifactId>
<version>${blade.tool.version}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
@ -34,7 +32,6 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
@ -54,7 +51,6 @@
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring.boot.admin.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
@ -78,12 +74,10 @@
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId> <artifactId>jjwt-impl</artifactId>
<version>0.11.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId> <artifactId>jjwt-jackson</artifactId>
<version>0.11.2</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,18 +1,17 @@
/* /**
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* * <p>
* Redistribution and use in source and binary forms, with or without * Licensed under the Apache License, Version 2.0 (the "License");
* modification, are permitted provided that the following conditions are met: * you may not use this file except in compliance with the License.
* * You may obtain a copy of the License at
* Redistributions of source code must retain the above copyright notice, * <p>
* this list of conditions and the following disclaimer. * http://www.apache.org/licenses/LICENSE-2.0
* Redistributions in binary form must reproduce the above copyright * <p>
* notice, this list of conditions and the following disclaimer in the * Unless required by applicable law or agreed to in writing, software
* documentation and/or other materials provided with the distribution. * distributed under the License is distributed on an "AS IS" BASIS,
* Neither the name of the dreamlu.net developer nor the names of its * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* contributors may be used to endorse or promote products derived from * See the License for the specific language governing permissions and
* this software without specific prior written permission. * limitations under the License.
* Author: Chill 庄骞 (smallchill@163.com)
*/ */
package org.springblade.gateway.props; package org.springblade.gateway.props;

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,18 +1,17 @@
/* /**
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* * <p>
* Redistribution and use in source and binary forms, with or without * Licensed under the Apache License, Version 2.0 (the "License");
* modification, are permitted provided that the following conditions are met: * you may not use this file except in compliance with the License.
* * You may obtain a copy of the License at
* Redistributions of source code must retain the above copyright notice, * <p>
* this list of conditions and the following disclaimer. * http://www.apache.org/licenses/LICENSE-2.0
* Redistributions in binary form must reproduce the above copyright * <p>
* notice, this list of conditions and the following disclaimer in the * Unless required by applicable law or agreed to in writing, software
* documentation and/or other materials provided with the distribution. * distributed under the License is distributed on an "AS IS" BASIS,
* Neither the name of the dreamlu.net developer nor the names of its * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* contributors may be used to endorse or promote products derived from * See the License for the specific language governing permissions and
* this software without specific prior written permission. * limitations under the License.
* Author: Chill 庄骞 (smallchill@163.com)
*/ */
package org.springblade.gateway.utils; package org.springblade.gateway.utils;

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -10,6 +10,6 @@ EXPOSE 7002
ADD ./target/blade-admin.jar ./app.jar ADD ./target/blade-admin.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-admin</artifactId> <artifactId>blade-admin</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
@ -19,22 +18,18 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-launch</artifactId> <artifactId>blade-core-launch</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-tool</artifactId> <artifactId>blade-core-tool</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-cloud</artifactId> <artifactId>blade-core-cloud</artifactId>
<version>${blade.tool.version}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
@ -46,7 +41,6 @@
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
<version>${spring.boot.admin.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -10,6 +10,6 @@ EXPOSE 7007
ADD ./target/blade-develop.jar ./app.jar ADD ./target/blade-develop.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -6,14 +6,13 @@
<parent> <parent>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-develop</artifactId> <artifactId>blade-develop</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
@ -21,22 +20,18 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-boot</artifactId> <artifactId>blade-core-boot</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-develop</artifactId> <artifactId>blade-starter-develop</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-dict-api</artifactId> <artifactId>blade-dict-api</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -126,7 +126,7 @@ public class CodeController extends BladeController {
@PostMapping("/gen-code") @PostMapping("/gen-code")
@ApiOperationSupport(order = 6) @ApiOperationSupport(order = 6)
@Operation(summary = "代码生成", description = "传入ids") @Operation(summary = "代码生成", description = "传入ids")
public R genCode(@Parameter(description = "主键集合", required = true) @RequestParam String ids, @RequestParam(defaultValue = "sword") String system) { public R genCode(@Parameter(description = "主键集合", required = true) @RequestParam String ids, @RequestParam(defaultValue = "saber3") String system) {
Collection<Code> codes = codeService.listByIds(Func.toLongList(ids)); Collection<Code> codes = codeService.listByIds(Func.toLongList(ids));
codes.forEach(code -> { codes.forEach(code -> {
BladeCodeGenerator generator = new BladeCodeGenerator(); BladeCodeGenerator generator = new BladeCodeGenerator();

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0; * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0; * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -10,6 +10,6 @@ EXPOSE 8108
ADD ./target/blade-report.jar ./app.jar ADD ./target/blade-report.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -5,14 +5,13 @@
<parent> <parent>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-report</artifactId> <artifactId>blade-report</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
@ -20,17 +19,14 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-boot</artifactId> <artifactId>blade-core-boot</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-report</artifactId> <artifactId>blade-starter-report</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -10,6 +10,6 @@ EXPOSE 8010
ADD ./target/blade-resource.jar ./app.jar ADD ./target/blade-resource.jar ./app.jar
ENTRYPOINT ["java", "--add-opens java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] ENTRYPOINT ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
CMD ["--spring.profiles.active=test"] CMD ["--spring.profiles.active=test"]

View File

@ -5,30 +5,26 @@
<parent> <parent>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-resource</artifactId> <artifactId>blade-resource</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-tool</artifactId> <artifactId>blade-core-tool</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-cloud</artifactId> <artifactId>blade-core-cloud</artifactId>
<version>${blade.tool.version}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
@ -39,7 +35,10 @@
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-oss</artifactId> <artifactId>blade-starter-oss</artifactId>
<version>${blade.tool.version}</version> </dependency>
<dependency>
<groupId>org.springblade</groupId>
<artifactId>blade-starter-swagger</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,30 +5,26 @@
<parent> <parent>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-seata-order</artifactId> <artifactId>blade-seata-order</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-boot</artifactId> <artifactId>blade-core-boot</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-transaction</artifactId> <artifactId>blade-starter-transaction</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,30 +5,26 @@
<parent> <parent>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-seata-storage</artifactId> <artifactId>blade-seata-storage</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-common</artifactId> <artifactId>blade-common</artifactId>
<version>${blade.project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-boot</artifactId> <artifactId>blade-core-boot</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-transaction</artifactId> <artifactId>blade-starter-transaction</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>SpringBlade</artifactId> <artifactId>SpringBlade</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-ops</artifactId> <artifactId>blade-ops</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>4.2.0</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>blade-admin</module> <module>blade-admin</module>

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>blade-service-api</artifactId> <artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-demo-api</artifactId> <artifactId>blade-demo-api</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>blade-service-api</artifactId> <artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-desk-api</artifactId> <artifactId>blade-desk-api</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
</project> </project>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>blade-service-api</artifactId> <artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-dict-api</artifactId> <artifactId>blade-dict-api</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,25 +5,22 @@
<parent> <parent>
<artifactId>blade-service-api</artifactId> <artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-scope-api</artifactId> <artifactId>blade-scope-api</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-core-secure</artifactId> <artifactId>blade-core-secure</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<artifactId>blade-starter-datascope</artifactId> <artifactId>blade-starter-datascope</artifactId>
<version>${blade.tool.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -5,13 +5,12 @@
<parent> <parent>
<artifactId>blade-service-api</artifactId> <artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId> <groupId>org.springblade</groupId>
<version>4.2.0</version> <version>${revision}</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>blade-system-api</artifactId> <artifactId>blade-system-api</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<version>${blade.project.version}</version>
<packaging>jar</packaging> <packaging>jar</packaging>

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). * Copyright (c) 2018-2099, Chill Zhuang 庄骞 (bladejava@qq.com).
* <p> * <p>
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

Some files were not shown because too many files have changed in this diff Show More