/*
* 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 com.cdjs.demos.web;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
/**
* @author <a href="mailto:chenxilzx1@gmail.com">theonefx</a>
*/
@RestController
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);
}
@Autowired
RedisTemplate redisTemplate;
@GetMapping("/htm")
public String testString() {
redisTemplate.opsForValue().set("springboot", "sucess");
Object redis = redisTemplate.opsForValue().get("redis");
return redis.toString();
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
sentinel.rar (30个子文件)
sentinel
HELP.md 1KB
pom.xml 4KB
src
test
java
com
cdjs
SentinelApplicationTests.java 700B
main
resources
static
index.html 79B
application.yaml 840B
java
com
cdjs
SentinelApplication.java 317B
demos
web
PathVariableController.java 2KB
BasicController.java 2KB
User.java 1KB
config
RedisConfig.java 2KB
.idea
jarRepositories.xml 864B
workspace.xml 6KB
misc.xml 541B
copilot
chatSessions
blobs
version 4B
xd.lck 14KB
00000000000.xd 6KB
compiler.xml 541B
modules.xml 263B
.gitignore 253B
encodings.xml 267B
target
classes
static
index.html 79B
application.yaml 840B
com
cdjs
demos
web
User.class 775B
BasicController.class 3KB
PathVariableController.class 1KB
SentinelApplication.class 699B
config
RedisConfig.class 3KB
test-classes
com
cdjs
SentinelApplicationTests.class 2KB
generated-test-sources
test-annotations
generated-sources
annotations
sentinel.iml 281B
.gitignore 395B
共 30 条
- 1
资源评论
XL's妃妃
- 粉丝: 4048
- 资源: 11
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功