Commit 34303800 authored by liuzicheng's avatar liuzicheng

初始化项目

parent 89e17405
......@@ -3,7 +3,7 @@
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>
<groupId>com.jqtx.windows</groupId>
<artifactId>crius</artifactId>
<artifactId>windows</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>windows</name>
<description>windows</description>
......
......@@ -23,14 +23,14 @@ public class Swagger2Config {
return new Docket(DocumentationType.SWAGGER_2).pathMapping("/")
.apiInfo(apiInfo()).enable(flag)
.select()
.apis(RequestHandlerSelectors.basePackage("com.jqtx.crius.web"))
.apis(RequestHandlerSelectors.basePackage("com.jqtx.windows.web"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder().title("线下业务网关系统")
.description("线下业务网关")
return new ApiInfoBuilder().title("浙农业务网关系统")
.description("浙农业务网关")
.version("0.0.1-SNAPSHOT")
.build();
}
......
......@@ -17,7 +17,7 @@ import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "mq")
@Slf4j
public class CriusMqProducer {
public class MqProducer {
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