Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
model1-image-split
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xiachenqi
model1-image-split
Commits
c553cd94
Commit
c553cd94
authored
Apr 15, 2019
by
XCQi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目创建
parents
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
110 additions
and
0 deletions
+110
-0
.gitignore
.gitignore
+32
-0
pom.xml
pom.xml
+48
-0
Model1ImageSplitApplication.java
...xininfo/model1imagesplit/Model1ImageSplitApplication.java
+13
-0
application.properties
src/main/resources/application.properties
+1
-0
Model1ImageSplitApplicationTests.java
...fo/model1imagesplit/Model1ImageSplitApplicationTests.java
+16
-0
No files found.
.gitignore
0 → 100644
View file @
c553cd94
HELP.md
/target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
/build/
### VS Code ###
.vscode/
/.mvn/
/mvnw.cmd
/mvnw
pom.xml
0 → 100644
View file @
c553cd94
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.1.4.RELEASE
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.yingxininfo
</groupId>
<artifactId>
model1-image-split
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
model1-image-split
</name>
<description>
Demo project for Spring Boot
</description>
<properties>
<java.version>
1.8
</java.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
</dependency>
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
src/main/java/com/yingxininfo/model1imagesplit/Model1ImageSplitApplication.java
0 → 100644
View file @
c553cd94
package
com
.
yingxininfo
.
model1imagesplit
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
Model1ImageSplitApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
Model1ImageSplitApplication
.
class
,
args
);
}
}
src/main/resources/application.properties
0 → 100644
View file @
c553cd94
src/test/java/com/yingxininfo/model1imagesplit/Model1ImageSplitApplicationTests.java
0 → 100644
View file @
c553cd94
package
com
.
yingxininfo
.
model1imagesplit
;
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
Model1ImageSplitApplicationTests
{
@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