This commit is contained in:
parent
3a3c711177
commit
375d2129b0
18
pom.xml
18
pom.xml
|
@ -101,24 +101,6 @@
|
||||||
<version>3.5.1</version>
|
<version>3.5.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- JPA 支持-->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!--Jackson XML-->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
||||||
<artifactId>jackson-dataformat-xml</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.freemarker</groupId>
|
|
||||||
<artifactId>freemarker</artifactId>
|
|
||||||
<version>2.3.32</version> <!-- 使用最新版本 -->
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -202,4 +202,8 @@ public class AjaxResult extends HashMap<String, Object> {
|
||||||
super.put(key, value);
|
super.put(key, value);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println(AjaxResult.success());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -181,4 +181,10 @@ public class SupervisionEdhServerController {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GetMapping("/test")
|
||||||
|
public AjaxResult test(HttpServletRequest request) {
|
||||||
|
|
||||||
|
return AjaxResult.success();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,8 +35,8 @@ logging:
|
||||||
|
|
||||||
cert:
|
cert:
|
||||||
#本地
|
#本地
|
||||||
#path: D:\ynyp\药品追溯\d2d\edh.pfx
|
path: D:\ynyp\药品追溯\d2d\edh.pfx
|
||||||
#服务器
|
#服务器
|
||||||
path: /app/cert/edh.pfx
|
#path: /app/cert/edh.pfx
|
||||||
password: YnYp123456
|
password: YnYp123456
|
||||||
algorithm: RSA
|
algorithm: RSA
|
||||||
|
|
Loading…
Reference in New Issue