Skip to content

Commit

Permalink
Merge branch 'feature/1.0.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhouyu committed Nov 2, 2024
2 parents 153898f + 8efe4a8 commit c649229
Show file tree
Hide file tree
Showing 21 changed files with 19 additions and 51 deletions.
5 changes: 0 additions & 5 deletions base-framework-cache-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@
<groupId>com.fuhouyu</groupId>
<artifactId>base-framework-common</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
1 change: 0 additions & 1 deletion base-framework-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down
5 changes: 0 additions & 5 deletions base-framework-context/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fuhouyu</groupId>
<artifactId>base-framework-common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
package com.fuhouyu.framework.context;

import com.fuhouyu.framework.context.exception.ContextNotFoundException;
import com.fuhouyu.framework.context.request.Request;
import com.fuhouyu.framework.context.user.User;

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
package com.fuhouyu.framework.context;

import com.fuhouyu.framework.context.exception.ContextNotFoundException;
import com.fuhouyu.framework.context.request.Request;
import com.fuhouyu.framework.context.user.User;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.fuhouyu.framework.context;
package com.fuhouyu.framework.context.request;

import com.fuhouyu.framework.common.service.AdditionalInformationFunction;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
* limitations under the License.
*/

package com.fuhouyu.framework.web.entity;
package com.fuhouyu.framework.context.request;

import com.fuhouyu.framework.context.Request;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.fuhouyu.framework.context;
package com.fuhouyu.framework.context.user;

import com.fuhouyu.framework.common.service.AdditionalInformationFunction;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.fuhouyu.framework.web.entity;
package com.fuhouyu.framework.context.user;

import com.fuhouyu.framework.context.User;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
Expand Down
2 changes: 2 additions & 0 deletions base-framework-context/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@

exports com.fuhouyu.framework.context;
exports com.fuhouyu.framework.context.exception;
exports com.fuhouyu.framework.context.user;
exports com.fuhouyu.framework.context.request;
}
5 changes: 0 additions & 5 deletions base-framework-kms-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
6 changes: 1 addition & 5 deletions base-framework-log-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,7 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.fuhouyu.framework.common.utils.LoggerUtil;
import com.fuhouyu.framework.context.ContextHolderStrategy;
import com.fuhouyu.framework.context.DefaultListableContextFactory;
import com.fuhouyu.framework.context.User;
import com.fuhouyu.framework.context.user.User;
import com.fuhouyu.framework.log.annotaions.LogRecord;
import com.fuhouyu.framework.log.core.LogRecordStoreService;
import com.fuhouyu.framework.log.enums.OperationTypeEnum;
Expand Down
5 changes: 0 additions & 5 deletions base-framework-resource-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,6 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions base-framework-security-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fuhouyu</groupId>
<artifactId>base-framework-context</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.fuhouyu.framework.security.token;

import com.fuhouyu.framework.context.ContextHolderStrategy;
import com.fuhouyu.framework.context.Request;
import com.fuhouyu.framework.context.request.Request;
import org.springframework.security.core.Authentication;

import java.math.BigInteger;
Expand Down
5 changes: 0 additions & 5 deletions base-framework-web-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,6 @@
<groupId>com.fuhouyu</groupId>
<artifactId>base-framework-kms-starter</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

import com.fuhouyu.framework.common.constants.HttpRequestHeaderConstant;
import com.fuhouyu.framework.common.utils.JacksonUtil;
import com.fuhouyu.framework.context.user.UserEntity;
import com.fuhouyu.framework.kms.service.KmsService;
import com.fuhouyu.framework.web.entity.UserEntity;
import com.fuhouyu.framework.web.filter.DefaultHttpBodyFilter;
import com.fuhouyu.framework.web.filter.HttpBodyFilter;
import com.fuhouyu.framework.web.handler.ParseHttpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

import com.fuhouyu.framework.context.ContextHolderStrategy;
import com.fuhouyu.framework.context.DefaultListableContextFactory;
import com.fuhouyu.framework.context.Request;
import com.fuhouyu.framework.context.User;
import com.fuhouyu.framework.context.request.Request;
import com.fuhouyu.framework.context.user.User;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import lombok.RequiredArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
package com.fuhouyu.framework.web.handler;

import com.fuhouyu.framework.common.utils.HttpRequestUtil;
import com.fuhouyu.framework.context.Request;
import com.fuhouyu.framework.context.User;
import com.fuhouyu.framework.web.entity.RequestEntity;
import com.fuhouyu.framework.context.request.Request;
import com.fuhouyu.framework.context.request.RequestEntity;
import com.fuhouyu.framework.context.user.User;
import jakarta.servlet.http.HttpServletRequest;
import lombok.NonNull;
import org.springframework.http.HttpHeaders;
Expand Down
1 change: 0 additions & 1 deletion base-framework-web-starter/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
exports com.fuhouyu.framework.web.aspectj;
exports com.fuhouyu.framework.web.constants;
exports com.fuhouyu.framework.web.controller;
exports com.fuhouyu.framework.web.entity;
exports com.fuhouyu.framework.web.enums;
exports com.fuhouyu.framework.web.exception;
exports com.fuhouyu.framework.web.filter;
Expand Down

0 comments on commit c649229

Please sign in to comment.