Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
sonarqube
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
胡帅
sonarqube
Commits
c1f220c3
提交
c1f220c3
authored
3月 25, 2024
作者:
husishuai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
init
上级
2590f77e
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
75 行增加
和
0 行删除
+75
-0
pom.xml
test/pom.xml
+41
-0
TestApplication.java
test/src/main/java/com/husishuai/test/TestApplication.java
+13
-0
TestController.java
...in/java/com/husishuai/test/controller/TestController.java
+20
-0
application.properties
test/src/main/resources/application.properties
+1
-0
没有找到文件。
test/pom.xml
0 → 100644
浏览文件 @
c1f220c3
<?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 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>
3.2.4
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.husishuai
</groupId>
<artifactId>
test
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
test
</name>
<description>
test
</description>
<properties>
<java.version>
17
</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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
test/src/main/java/com/husishuai/test/TestApplication.java
0 → 100644
浏览文件 @
c1f220c3
package
com
.
husishuai
.
test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
TestApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
TestApplication
.
class
,
args
);
}
}
test/src/main/java/com/husishuai/test/controller/TestController.java
0 → 100644
浏览文件 @
c1f220c3
package
com
.
husishuai
.
test
.
controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* @author husishuai
* @description
* @createTime 2024年03月25日
*/
@RestController
@RequestMapping
(
"/test"
)
public
class
TestController
{
@GetMapping
(
"/hello"
)
public
String
hello
(){
return
"hello world"
;
}
}
test/src/main/resources/application.properties
0 → 100644
浏览文件 @
c1f220c3
spring.application.name
=
test
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论