GitBucket
Toggle navigation
Sign in
Files
Branches
2
Releases
Issues
2
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
nitta-lab-2021
/
org.ntlab.acanthus_server
Browse code
Merge pull request
#3
from nitta-lab-2021/HelloWorld
HelloWorldを作成しました。
invitesBug
master
commit
e8b3c8d4b432c79a8216623723f3e5f693afebca
2 parents
0fa39d3
+
2967920
赤木元基
authored
on 7 May 2021
Patch
Unified
Split
Showing
1 changed file
+16
-0
■
■
■
■
■
src/main/java/org/ntlab/acanthus_server/resources/HelloWorld.java
Ignore Space
Show notes
View
16
■
■
■
■
■
src/main/java/org/ntlab/acanthus_server/resources/HelloWorld.java
0 → 100644
package
org
.
ntlab
.
acanthus_server
.
resources
;
import
org
.
springframework
.
stereotype
.
Component
;
import
javax
.
ws
.
rs
.
GET
;
import
javax
.
ws
.
rs
.
Path
;
@Component
@Path
(
"hello_world"
)
public
class
HelloWorld
{
@GET
public
String
getHelloWorld
()
{
return
"Hello World"
;
}
}
Show line notes below