feat(修改): 配置分页插件
This commit is contained in:
parent
a7c0ab70cb
commit
743cafe063
|
@ -7,9 +7,8 @@
|
||||||
<option value="$PROJECT_DIR$/pom.xml" />
|
<option value="$PROJECT_DIR$/pom.xml" />
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
<option name="workspaceImportForciblyTurnedOn" value="true" />
|
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="corretto-18" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="corretto-17" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/out" />
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
6
pom.xml
6
pom.xml
|
@ -20,14 +20,14 @@
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>18</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>18</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
<mybatis.spring>2.2.0</mybatis.spring>
|
<mybatis.spring>2.2.0</mybatis.spring>
|
||||||
<lombok>1.18.20</lombok>
|
<lombok>1.18.20</lombok>
|
||||||
<fastjson>1.2.76</fastjson>
|
<fastjson>1.2.76</fastjson>
|
||||||
<commons.lang>2.6</commons.lang>
|
<commons.lang>2.6</commons.lang>
|
||||||
<druid>1.2.1</druid>
|
<druid>1.2.1</druid>
|
||||||
<pagehelper>1.3.0</pagehelper>
|
<pagehelper>1.4.3</pagehelper>
|
||||||
<aliyun.sdk.oss>3.10.2</aliyun.sdk.oss>
|
<aliyun.sdk.oss>3.10.2</aliyun.sdk.oss>
|
||||||
<knife4j>3.0.3</knife4j>
|
<knife4j>3.0.3</knife4j>
|
||||||
<aspectj>1.9.4</aspectj>
|
<aspectj>1.9.4</aspectj>
|
||||||
|
|
|
@ -9,6 +9,7 @@ import com.wechat.pay.contrib.apache.httpclient.util.AesUtil;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.apache.http.entity.ContentType;
|
import org.apache.http.entity.ContentType;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
@ -70,7 +71,7 @@ public class PayNotifyController {
|
||||||
StringBuilder result = new StringBuilder();
|
StringBuilder result = new StringBuilder();
|
||||||
String line = null;
|
String line = null;
|
||||||
while ((line = reader.readLine()) != null) {
|
while ((line = reader.readLine()) != null) {
|
||||||
if (!result.isEmpty()) {
|
if (!StringUtils.isEmpty(result)) {
|
||||||
result.append("\n");
|
result.append("\n");
|
||||||
}
|
}
|
||||||
result.append(line);
|
result.append(line);
|
||||||
|
|
|
@ -27,8 +27,9 @@ mybatis:
|
||||||
#mapper配置文件
|
#mapper配置文件
|
||||||
mapper-locations: classpath:mapper/*.xml
|
mapper-locations: classpath:mapper/*.xml
|
||||||
type-aliases-package: com.sky.pojo.entity
|
type-aliases-package: com.sky.pojo.entity
|
||||||
configuration:
|
config-location: classpath:mybatis-config.xml
|
||||||
map-underscore-to-camel-case: true # 开启驼峰命名
|
# configuration:
|
||||||
|
# map-underscore-to-camel-case: true # 开启驼峰命名
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE configuration PUBLIC
|
||||||
|
"-//mybatis.org//DTD Config 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-config.dtd">
|
||||||
|
<configuration>
|
||||||
|
<settings>
|
||||||
|
<!-- 设置驼峰标识 -->
|
||||||
|
<setting name="mapUnderscoreToCamelCase" value="true"/>
|
||||||
|
<!-- 打印SQL语句 -->
|
||||||
|
<setting name="logImpl" value="STDOUT_LOGGING"/>
|
||||||
|
</settings>
|
||||||
|
<plugins>
|
||||||
|
<!-- 分页插件 -->
|
||||||
|
<plugin interceptor="com.github.pagehelper.PageInterceptor"/>
|
||||||
|
</plugins>
|
||||||
|
</configuration>
|
Loading…
Reference in New Issue