Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qg-rt-dc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
data-spider
qg-rt-dc
Commits
e4334f8d
Commit
e4334f8d
authored
Jun 03, 2019
by
data爬虫-冯 军凯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据库连接配置
parent
d4a0cacb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
68 deletions
+10
-68
pom.xml
qg-data-service/pom.xml
+10
-39
QgDataServiceApplication.java
...cn/quantgroup/qgdataservice/QgDataServiceApplication.java
+0
-13
QgDataServiceApplicationTests.java
...antgroup/qgdataservice/QgDataServiceApplicationTests.java
+0
-16
No files found.
qg-data-service/pom.xml
View file @
e4334f8d
...
@@ -5,14 +5,20 @@
...
@@ -5,14 +5,20 @@
<groupId>
cn.quantgroup
</groupId>
<groupId>
cn.quantgroup
</groupId>
<artifactId>
qg-data-service
</artifactId>
<artifactId>
qg-data-service
</artifactId>
<version>
1.0.
3
-SNAPSHOT
</version>
<version>
1.0.
4
-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
<name>
qg-data-service
</name>
<name>
qg-data-service
</name>
<!--<parent>-->
<!--<groupId>cn.quantgroup</groupId>-->
<!--<artifactId>commons-parent</artifactId>-->
<!--<version>0.2.4</version>-->
<!--</parent>-->
<parent>
<parent>
<groupId>
cn.quantgroup
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
commons
-parent
</artifactId>
<artifactId>
spring-boot-starter
-parent
</artifactId>
<version>
0.2.4
</version>
<version>
1.5.8.RELEASE
</version>
</parent>
</parent>
<properties>
<properties>
...
@@ -21,17 +27,6 @@
...
@@ -21,17 +27,6 @@
<dependencies>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<dependency>
<groupId>
com.zaxxer
</groupId>
<groupId>
com.zaxxer
</groupId>
<artifactId>
HikariCP
</artifactId>
<artifactId>
HikariCP
</artifactId>
...
@@ -64,15 +59,6 @@
...
@@ -64,15 +59,6 @@
</dependencies>
</dependencies>
<!--<build>-->
<!--<plugins>-->
<!--<plugin>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-maven-plugin</artifactId>-->
<!--</plugin>-->
<!--</plugins>-->
<!--</build>-->
<build>
<build>
<plugins>
<plugins>
<plugin>
<plugin>
...
@@ -95,21 +81,6 @@
...
@@ -95,21 +81,6 @@
</execution>
</execution>
</executions>
</executions>
</plugin>
</plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>compile</phase>
<goals>
<goal>jar-no-fork</goal>
<!– 类似执行mvn source:jar –>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</plugins>
</build>
</build>
...
...
qg-data-service/src/main/java/cn/quantgroup/qgdataservice/QgDataServiceApplication.java
deleted
100644 → 0
View file @
d4a0cacb
package
cn
.
quantgroup
.
qgdataservice
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
QgDataServiceApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
QgDataServiceApplication
.
class
,
args
);
}
}
qg-data-service/src/test/java/cn/quantgroup/qgdataservice/QgDataServiceApplicationTests.java
deleted
100644 → 0
View file @
d4a0cacb
package
cn
.
quantgroup
.
qgdataservice
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.junit4.SpringRunner
;
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
public
class
QgDataServiceApplicationTests
{
@Test
public
void
contextLoads
()
{
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment