@Controller public class HelloWorldController { @RequestMapping("success") public String success(Map<String,Object> map) { map.put("hello","你好"); retu ...
分类:
其他好文 时间:
2020-06-30 17:25:21
阅读次数:
114
方式一: 在控制器的方法内部结尾使用 return View(); 来打开与方法同名的页面,如: public ActionResult Login() { return View(); } 该写法打开 Login 页面。 方式二: 可以添加参数来显式地指定要跳转的页面,如: return View ...
分类:
Web程序 时间:
2020-06-30 12:55:40
阅读次数:
159
package org.springblade.desk.controller; import com.baomidou.mybatisplus.core.metadata.IPage; import com.github.xiaoymin.knife4j.annotations.ApiOperat ...
分类:
编程语言 时间:
2020-06-29 11:42:26
阅读次数:
59
MAC 地址(Media access control address)是分配给网络接口控制器(Network interface controller, NIC)的唯一标识符,它会在网络段中充当网络地址使用,所有具有网卡的主机都有单独的 MAC 地址,该地址总共包含 48 位,占 6 字节的空间, ...
分类:
系统相关 时间:
2020-06-29 10:06:23
阅读次数:
76
知识点:@RestController注解相当于@ResponseBody + @Controller合在一起的作用。 1) 如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,或者html,配置的视图解析器 InternalReso ...
分类:
其他好文 时间:
2020-06-29 09:46:19
阅读次数:
54
ftp的passive模式 今天在一台测试服务器上搭建ftp,折腾了许久。 主要是不了解ftp的passive模式和port模式的区别。这里记录一下。 和passive模式对应的叫做port模式,也叫做standard模式,也叫主动模式。 每个ftp客户端和服务端建立连接需要建立两个连接,一个连接用 ...
分类:
其他好文 时间:
2020-06-29 09:26:38
阅读次数:
43
IOS active 状态失效问题 失效原因 By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or ...
分类:
移动开发 时间:
2020-06-29 00:21:02
阅读次数:
69
1、统一异常处理类package cn.hadron.controller;import org.springframework.web.bind.annotation.ControllerAdvice;import org.springframework.web.bind.annotation.E ...
分类:
编程语言 时间:
2020-06-28 22:43:53
阅读次数:
71
1、以实体类方式接收 @Controller @RequestMapping("/user") public class UserAction { @RequestMapping(value = "/add") @ResponseBody public String add(@RequestBody ...
分类:
编程语言 时间:
2020-06-28 14:59:40
阅读次数:
104
一,什么情况下需要使用多个redis数据源? 为了缓存数据,通常我们会在线上使用多个redis的cluster, 每个cluster中缓存不同的数据,以方便管理. 例如:我们缓存了杂志文章/商品信息/分类页面 同时我们又使用一个redis cluster作为分布式session 这里就会有多个red ...
分类:
编程语言 时间:
2020-06-28 14:54:20
阅读次数:
54