/*
* Copyright 2013-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.example.orderservice.demos.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* @author <a href="mailto:chenxilzx1@gmail.com">theonefx</a>
*/
@Controller
public class BasicController {
// http://127.0.0.1:8080/hello?name=lisi
@RequestMapping("/hello")
@ResponseBody
public String hello(@RequestParam(name = "name", defaultValue = "unknown user") String name) {
return "Hello " + name;
}
// http://127.0.0.1:8080/user
@RequestMapping("/user")
@ResponseBody
public User user() {
User user = new User();
user.setName("theonefx");
user.setAge(666);
return user;
}
// http://127.0.0.1:8080/save_user?name=newName&age=11
@RequestMapping("/save_user")
@ResponseBody
public String saveUser(User u) {
return "user will save: name=" + u.getName() + ", age=" + u.getAge();
}
// http://127.0.0.1:8080/html
@RequestMapping("/html")
public String html() {
return "index.html";
}
@ModelAttribute
public void parseUser(@RequestParam(name = "name", defaultValue = "unknown user") String name
, @RequestParam(name = "age", defaultValue = "12") Integer age, User user) {
user.setName("zhangsan");
user.setAge(18);
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
微服务多项目搭建,一个简单的小demo
共24个文件
xml:7个
java:5个
class:4个
0 下载量 56 浏览量
2024-08-08
21:42:08
上传
评论
收藏 23KB ZIP 举报
温馨提示
微服务多项目搭建,一个简单的小demo
资源推荐
资源详情
资源评论
收起资源包目录
microserviceTest.zip (24个子文件)
microserviceTest
pom.xml 2KB
src
test
java
main
resources
java
.idea
jarRepositories.xml 870B
workspace.xml 3KB
misc.xml 673B
compiler.xml 546B
.gitignore 190B
encodings.xml 442B
order-service
HELP.md 853B
pom.xml 3KB
src
test
java
org
example
orderservice
OrderServiceApplicationTests.java 231B
main
resources
application.properties 50B
static
index.html 79B
java
org
example
orderservice
OrderServiceApplication.java 341B
demos
web
PathVariableController.java 2KB
BasicController.java 2KB
User.java 1KB
target
classes
application.properties 50B
static
index.html 79B
org
example
orderservice
OrderServiceApplication.class 743B
demos
web
User.class 807B
BasicController.class 2KB
PathVariableController.class 1KB
generated-sources
annotations
.gitignore 395B
.gitignore 490B
共 24 条
- 1
资源评论
流连勿忘返
- 粉丝: 5431
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功