Commit 4271c70a by huluobin

不知道改了什么

parent 15ab7751
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
<mybatis.version>3.4.1</mybatis.version> <mybatis.version>3.4.1</mybatis.version>
<mybatis.spring.version>1.3.2</mybatis.spring.version> <mybatis.spring.version>1.3.2</mybatis.spring.version>
<mysql.version>5.1.47</mysql.version> <mysql.version>5.1.47</mysql.version>
<commons.lang3>3.4</commons.lang3>
<pagehelper.spring.boot.starter>1.2.5</pagehelper.spring.boot.starter> <pagehelper.spring.boot.starter>1.2.5</pagehelper.spring.boot.starter>
<druid.spring.boot.starter>1.1.9</druid.spring.boot.starter> <druid.spring.boot.starter>1.1.9</druid.spring.boot.starter>
<fastjson>1.2.47</fastjson> <fastjson>1.2.47</fastjson>
...@@ -104,11 +103,6 @@ ...@@ -104,11 +103,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang3}</version>
</dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
......
# shellcheck disable=SC2164
cd /home/ubuntu/data/other/dc-cost-system/cost-core
git pull
# 拉取开发分支代码
git checkout master
#打包
mvn clean package -Dmaven.test.skip=true -Dmaven.compile.fork=true
# kill测试进程
# shellcheck disable=SC2009
ps -ef | grep cost-core | grep -v grep | grep prod | awk '{print $2}' | xargs kill -9
# 运行
nohup java -Xms512m -Xmx512m -Xss1M -jar -Dspring.profiles.active=prod /home/ubuntu/data/other/dc-cost-system/cost-core/target/cost-core-1.1.13.jar & \
...@@ -26,7 +26,7 @@ public class CostListSearchServiceTest { ...@@ -26,7 +26,7 @@ public class CostListSearchServiceTest {
@Test @Test
public void searchByKey() { public void searchByKey() {
Map<String, Object> result = costListSearchService.searchByKey("F024926,F024927,F024928", 1, 100); Map<String, Object> result = costListSearchService.searchByKey("生物", 1, 100);
System.out.println(JSON.toJSONString(result)); System.out.println(JSON.toJSONString(result));
} }
......
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