- 集成 mall - spring boot
This commit is contained in:
parent
a80b98d997
commit
dec689d034
@ -38,6 +38,11 @@
|
|||||||
<artifactId>user-sdk</artifactId>
|
<artifactId>user-sdk</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.iocoder.mall</groupId>
|
||||||
|
<artifactId>mall-spring-boot</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- tools category -->
|
<!-- tools category -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
package cn.iocoder.mall.order.application.config;
|
|
||||||
|
|
||||||
import cn.iocoder.common.framework.exception.GlobalExceptionHandler;
|
|
||||||
import cn.iocoder.common.framework.servlet.CorsFilter;
|
|
||||||
import cn.iocoder.mall.admin.sdk.interceptor.AdminSecurityInterceptor;
|
|
||||||
import cn.iocoder.mall.user.sdk.interceptor.UserAccessLogInterceptor;
|
|
||||||
import cn.iocoder.mall.user.sdk.interceptor.UserSecurityInterceptor;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import org.springframework.context.annotation.Import;
|
|
||||||
import org.springframework.web.servlet.config.annotation.*;
|
|
||||||
|
|
||||||
@EnableWebMvc
|
|
||||||
@Configuration
|
|
||||||
@Import(value = {GlobalExceptionHandler.class, // 统一全局返回
|
|
||||||
UserSecurityInterceptor.class, AdminSecurityInterceptor.class,
|
|
||||||
UserAccessLogInterceptor.class}) // 安全拦截器,实现认证和授权功能。
|
|
||||||
public class MVCConfiguration implements WebMvcConfigurer {
|
|
||||||
|
|
||||||
// @Autowired
|
|
||||||
// private SecurityInterceptor securityInterceptor;
|
|
||||||
|
|
||||||
// @Reference
|
|
||||||
// private OAuth2Service oauth2Service;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private UserSecurityInterceptor userSecurityInterceptor;
|
|
||||||
@Autowired
|
|
||||||
private UserAccessLogInterceptor userAccessLogInterceptor;
|
|
||||||
@Autowired
|
|
||||||
private AdminSecurityInterceptor adminSecurityInterceptor;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void addInterceptors(InterceptorRegistry registry) {
|
|
||||||
// 用户
|
|
||||||
registry.addInterceptor(userAccessLogInterceptor).addPathPatterns("/users/**");
|
|
||||||
registry.addInterceptor(userSecurityInterceptor).addPathPatterns("/users/**"); // 只拦截我们定义的接口
|
|
||||||
// 管理员
|
|
||||||
registry.addInterceptor(adminSecurityInterceptor).addPathPatterns("/admins/**"); // 只拦截我们定义的接口
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public FilterRegistrationBean<CorsFilter> corsFilter() {
|
|
||||||
FilterRegistrationBean<CorsFilter> registrationBean = new FilterRegistrationBean<>();
|
|
||||||
registrationBean.setFilter(new CorsFilter());
|
|
||||||
registrationBean.addUrlPatterns("/*");
|
|
||||||
return registrationBean;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,36 +0,0 @@
|
|||||||
package cn.iocoder.mall.order.application.config;
|
|
||||||
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import springfox.documentation.builders.ApiInfoBuilder;
|
|
||||||
import springfox.documentation.builders.PathSelectors;
|
|
||||||
import springfox.documentation.builders.RequestHandlerSelectors;
|
|
||||||
import springfox.documentation.service.ApiInfo;
|
|
||||||
import springfox.documentation.spi.DocumentationType;
|
|
||||||
import springfox.documentation.spring.web.plugins.Docket;
|
|
||||||
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
@EnableSwagger2
|
|
||||||
public class SwaggerConfiguration {
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public Docket createRestApi() {
|
|
||||||
return new Docket(DocumentationType.SWAGGER_2)
|
|
||||||
.apiInfo(apiInfo())
|
|
||||||
.select()
|
|
||||||
.apis(RequestHandlerSelectors.basePackage("cn.iocoder.mall.order.controller"))
|
|
||||||
.paths(PathSelectors.any())
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
private ApiInfo apiInfo() {
|
|
||||||
return new ApiInfoBuilder()
|
|
||||||
.title("订单子系统")
|
|
||||||
.description("订单子系统")
|
|
||||||
.termsOfServiceUrl("http://www.iocoder.cn")
|
|
||||||
.version("1.0.0")
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -7,3 +7,9 @@ server:
|
|||||||
port: 18088
|
port: 18088
|
||||||
servlet:
|
servlet:
|
||||||
context-path: /order-api/
|
context-path: /order-api/
|
||||||
|
|
||||||
|
swagger:
|
||||||
|
title: 订单子系统
|
||||||
|
description: 订单子系统
|
||||||
|
version: 1.0.0
|
||||||
|
base-package: cn.iocoder.mall.pay.application.controller
|
||||||
|
Loading…
Reference in New Issue
Block a user