Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
1f5ed1ba
Commit
1f5ed1ba
authored
Apr 21, 2018
by
Junling Bu
Browse files
update[litemall-os-api,litemall-wx-api, litemall-admin-api]: 三个后台服务的IndexController显示不同的hello内容。
parent
f831bd85
Changes
3
Hide whitespace changes
Inline
Side-by-side
litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/IndexController.java
View file @
1f5ed1ba
...
...
@@ -13,7 +13,7 @@ public class IndexController {
@RequestMapping
(
"/index"
)
public
Object
index
(){
return
ResponseUtil
.
ok
(
"hello world"
);
return
ResponseUtil
.
ok
(
"hello world
, this is admin service
"
);
}
...
...
litemall-os-api/src/main/java/org/linlinjava/litemall/os/web/OsIndexController.java
View file @
1f5ed1ba
...
...
@@ -13,7 +13,7 @@ public class OsIndexController {
@RequestMapping
(
"/index"
)
public
Object
index
(){
return
ResponseUtil
.
ok
(
"hello world"
);
return
ResponseUtil
.
ok
(
"hello world
, this is os service
"
);
}
}
litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxIndexController.java
View file @
1f5ed1ba
...
...
@@ -13,7 +13,7 @@ public class WxIndexController {
@RequestMapping
(
"/index"
)
public
Object
index
(){
return
ResponseUtil
.
ok
(
"hello world"
);
return
ResponseUtil
.
ok
(
"hello world
, this is wx service
"
);
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
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