Commit 34303800 authored by liuzicheng's avatar liuzicheng

初始化项目

parent 89e17405
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.jqtx.windows</groupId> <groupId>com.jqtx.windows</groupId>
<artifactId>crius</artifactId> <artifactId>windows</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>windows</name> <name>windows</name>
<description>windows</description> <description>windows</description>
......
...@@ -23,14 +23,14 @@ public class Swagger2Config { ...@@ -23,14 +23,14 @@ public class Swagger2Config {
return new Docket(DocumentationType.SWAGGER_2).pathMapping("/") return new Docket(DocumentationType.SWAGGER_2).pathMapping("/")
.apiInfo(apiInfo()).enable(flag) .apiInfo(apiInfo()).enable(flag)
.select() .select()
.apis(RequestHandlerSelectors.basePackage("com.jqtx.crius.web")) .apis(RequestHandlerSelectors.basePackage("com.jqtx.windows.web"))
.paths(PathSelectors.any()) .paths(PathSelectors.any())
.build(); .build();
} }
private ApiInfo apiInfo() { private ApiInfo apiInfo() {
return new ApiInfoBuilder().title("线下业务网关系统") return new ApiInfoBuilder().title("浙农业务网关系统")
.description("线下业务网关") .description("浙农业务网关")
.version("0.0.1-SNAPSHOT") .version("0.0.1-SNAPSHOT")
.build(); .build();
} }
......
...@@ -17,7 +17,7 @@ import org.springframework.context.annotation.Configuration; ...@@ -17,7 +17,7 @@ import org.springframework.context.annotation.Configuration;
@Configuration @Configuration
@ConfigurationProperties(prefix = "mq") @ConfigurationProperties(prefix = "mq")
@Slf4j @Slf4j
public class CriusMqProducer { public class MqProducer {
private String creditTopic; private String creditTopic;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment