Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
device-admin
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
device-admin
Commits
8c3c32c6
提交
8c3c32c6
authored
9月 05, 2021
作者:
Matrix
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(监控): initial commit
initial commit
上级
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
115 行增加
和
0 行删除
+115
-0
.gitignore
.gitignore
+38
-0
pom.xml
pom.xml
+48
-0
AdminServerApplication.java
...n/java/com/matrix/adminserver/AdminServerApplication.java
+15
-0
application.properties
src/main/resources/application.properties
+1
-0
AdminServerApplicationTests.java
...a/com/matrix/adminserver/AdminServerApplicationTests.java
+13
-0
没有找到文件。
.gitignore
0 → 100644
浏览文件 @
8c3c32c6
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**
# Log file
*.log
.log
**/.log
### STS ###
\~*.xlsx
.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/
/dev-union/src/main/resources/excelTemplate/~$finalCheck.xlsx
pom.xml
0 → 100644
浏览文件 @
8c3c32c6
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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 https://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.14.RELEASE
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.matrix
</groupId>
<artifactId>
admin-server
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
admin-server
</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-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-starter-server
</artifactId>
<version>
2.1.4
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
src/main/java/com/matrix/adminserver/AdminServerApplication.java
0 → 100644
浏览文件 @
8c3c32c6
package
com
.
matrix
.
adminserver
;
import
de.codecentric.boot.admin.server.config.EnableAdminServer
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
@EnableAdminServer
public
class
AdminServerApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
AdminServerApplication
.
class
,
args
);
}
}
src/main/resources/application.properties
0 → 100644
浏览文件 @
8c3c32c6
server.port
=
8769
src/test/java/com/matrix/adminserver/AdminServerApplicationTests.java
0 → 100644
浏览文件 @
8c3c32c6
package
com
.
matrix
.
adminserver
;
import
org.junit.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
AdminServerApplicationTests
{
@Test
void
contextLoads
()
{
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论