Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump commons-fileupload from 1.3.3 to 1.5 #41

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
73325df
Bump fastjson from 1.2.79 to 1.2.83
dependabot[bot] Jun 17, 2022
c8b13e8
Bump mysql-connector-java from 8.0.16 to 8.0.28
dependabot[bot] Jun 20, 2022
7606a17
Bump poi from 3.17 to 4.1.1
dependabot[bot] Jun 29, 2022
4330d1b
Bump jsch from 0.1.49 to 0.1.54
dependabot[bot] Jul 6, 2022
d90f556
Merge pull request #29 from java110/dependabot/maven/com.alibaba-fast…
928255095 Jul 13, 2022
a74a104
Merge pull request #30 from java110/dependabot/maven/mysql-mysql-conn…
928255095 Jul 13, 2022
5eba275
Merge pull request #31 from java110/dependabot/maven/org.apache.poi-p…
928255095 Jul 13, 2022
5872721
Merge pull request #32 from java110/dependabot/maven/com.jcraft-jsch-…
928255095 Jul 13, 2022
f8ce1c5
Bump jsoup from 1.14.2 to 1.15.3
dependabot[bot] Sep 1, 2022
c421485
Merge pull request #33 from java110/dependabot/maven/org.jsoup-jsoup-…
928255095 Oct 23, 2022
a1f8cfc
Bump commons-net from 3.3 to 3.9.0
dependabot[bot] Dec 5, 2022
f5e0c02
优化费用汇总bug
928255095 Jan 6, 2023
d20264d
优化群9 无峰 反馈问题
928255095 Jan 6, 2023
99e359d
解决退费bug
928255095 Jan 6, 2023
6f42f51
优化springboot 配置
928255095 Jan 8, 2023
6d62d5b
修改安装教程
928255095 Jan 9, 2023
2896a43
Bump junit from 4.11 to 4.13.1 in /java110-doc
dependabot[bot] Jan 9, 2023
310788b
Bump junit from 4.11 to 4.13.1 in /springboot
dependabot[bot] Jan 9, 2023
5c0be3c
Bump junit from 4.11 to 4.13.1 in /java110-boot
dependabot[bot] Jan 9, 2023
8d72744
Merge pull request #39 from java110/dependabot/maven/java110-boot/jun…
928255095 Jan 9, 2023
f9991c6
Merge pull request #38 from java110/dependabot/maven/java110-doc/juni…
928255095 Jan 9, 2023
471258f
Merge pull request #37 from java110/dependabot/maven/springboot/junit…
928255095 Jan 9, 2023
fbcdd19
Merge pull request #36 from java110/dependabot/maven/commons-net-comm…
928255095 Jan 9, 2023
7fbe79f
Bump commons-fileupload from 1.3.3 to 1.5
dependabot[bot] Feb 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installHcDev.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## HC小区管理系统安装教程(开发环境)

1、下载代码 <br/>
git clone https://github.com/java110/MicroCommunity.git <br/>
git clone https://gitee.com/wuxw7/MicroCommunity.git <br/>
执行 mvn clean package 和 mvn clean install<br/><br/>
2、添加hosts<br/>
127.0.0.1 dev.db.java110.com <br/>
Expand Down Expand Up @@ -82,7 +82,7 @@ dataSource.yml 中修改password密码<br/>
6、启动模块service-开头服务下的*ServiceApplicationStart.java文件中的main方法<br/>
注意启动是没有顺序的,但是我们优先推荐您启动service-eureka<br/>
7、下载前段代码 <br/>
git clone https://github.com/java110/MicroCommunityWeb.git <br/>
git clone https://gitee.com/java110/MicroCommunityWeb.git <br/>
8、修改app.js 中的地址<br/>
```shell script
app.use('/callComponent', proxy('http://192.168.100.108:8008', opts));
Expand Down
2 changes: 1 addition & 1 deletion java110-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.java110.core.smo.impl;

import com.alibaba.fastjson.JSONObject;
import com.java110.core.context.Environment;
import com.java110.core.context.IPageData;
import com.java110.core.context.PageData;
import com.java110.core.factory.CallApiServiceFactory;
Expand All @@ -9,6 +10,7 @@
import com.java110.dto.assetImportLog.AssetImportLogDto;
import com.java110.intf.common.ITransactionLogInnerServiceSMO;
import com.java110.po.transactionLog.TransactionLogPo;
import com.java110.utils.factory.ApplicationContextFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.scheduling.annotation.Async;
Expand All @@ -32,6 +34,9 @@ public class SaveTransactionLogSMOImpl implements ISaveTransactionLogSMO {
@Autowired(required = false)
private RestTemplate restTemplate;

@Autowired(required = false)
private RestTemplate outRestTemplate;

@Override
@Async
public void saveLog(TransactionLogPo transactionLogPo) {
Expand All @@ -41,11 +46,17 @@ public void saveLog(TransactionLogPo transactionLogPo) {
@Override
@Async
public void saveAssetImportLog(AssetImportLogDto assetImportLogDto) {

String apiUrl = "http://api-service/api/assetImportLog/saveAssetImportLog";
RestTemplate tmpRestTemplate = restTemplate;
if (Environment.isStartBootWay()) {
apiUrl = "http://127.0.0.1:8008/api/assetImportLog/saveAssetImportLog";
tmpRestTemplate = outRestTemplate;
}
IPageData newPd = PageData.newInstance().builder("-1", "批量日志", "", "",
"", "", apiUrl, "",
AppDto.WEB_APP_ID);

CallApiServiceFactory.callCenterService(restTemplate, newPd, JSONObject.toJSONString(assetImportLogDto), apiUrl, HttpMethod.POST);
CallApiServiceFactory.callCenterService(tmpRestTemplate, newPd, JSONObject.toJSONString(assetImportLogDto), apiUrl, HttpMethod.POST);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
t.state,d.name stateName,t.start_time,t.end_time,t.start_time startTime,t.end_time endTime,pfa.`value`
importFeeName,pfc.fee_name feeName,t.payable_amount,t.payable_amount payableAmount,
mw.cur_degrees curDegrees,mw.pre_degrees preDegrees, mw.pre_reading_time preReadingTime,mw.cur_reading_time
curReadingTime
curReadingTime,t.pay_order_id payOrderId
from pay_fee_detail t
left join pay_fee_attrs pfa on t.fee_id = pfa.fee_id and pfa.spec_cd = '390002'
left join pay_fee pf on t.fee_id = pf.fee_id and pf.status_cd = '0'
Expand Down Expand Up @@ -307,12 +307,12 @@
<insert id="saveFeeDetail" parameterType="Map">
insert into
pay_fee_detail(
prime_rate,detail_id,receivable_amount,cycles,remark,status_cd,received_amount,community_id,b_id,fee_id,state,start_time,end_time,payable_amount
prime_rate,detail_id,receivable_amount,cycles,remark,received_amount,community_id,fee_id,state,start_time,end_time,payable_amount
<if test="createTime != null and createTime != ''">
,create_time
</if>
)
values(#{primeRate},#{detailId},#{receivableAmount},#{cycles},#{remark},'0',#{receivedAmount},#{communityId},'-1',#{feeId},#{state},
values(#{primeRate},#{detailId},#{receivableAmount},#{cycles},#{remark},#{receivedAmount},#{communityId},#{feeId},#{state},
#{startTime},#{endTime},#{payableAmount}
<if test="createTime != null and createTime != ''">
,#{createTime}
Expand Down
2 changes: 1 addition & 1 deletion java110-doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.1</version>
<scope>test</scope>
</dependency>

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<tomcat.servlet.version>6.0.37</tomcat.servlet.version>
<druid.version>1.1.10</druid.version>
<mybatis-spring.version>1.3.1</mybatis-spring.version>
<mysql.version>8.0.16</mysql.version>
<mysql.version>8.0.28</mysql.version>
<commons-pool2.version>2.2</commons-pool2.version>
<commons-collections.version>3.2.1</commons-collections.version>
<commons-fileupload.version>1.3.3</commons-fileupload.version>
<commons-fileupload.version>1.5</commons-fileupload.version>
<commons-codec.version>1.6</commons-codec.version>
<commons-logging.version>1.1.1</commons-logging.version>
<commons-lang.version>2.5</commons-lang.version>
Expand Down Expand Up @@ -250,7 +250,7 @@
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.49</version>
<version>0.1.54</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -343,7 +343,7 @@
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.3</version>
<version>3.9.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -466,7 +466,7 @@
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
<version>4.1.1</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJso
ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) reportFeeMonthStatisticsDto.getRow()), count, reportFeeMonthStatisticsDtos);

ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK);
context.setResponseEntity(responseEntity);

}

private List<ReportFeeMonthStatisticsDto> dealConfigReportFeeMonthStatisticsList(List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticsList, String flag) {
Expand Down
2 changes: 1 addition & 1 deletion springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion springboot/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
spring:
profiles:
active: debug
active: dev