debain10 修改apt源为aliyun mv /etc/apt/sources.list /etc/apt/sources.list.bak && vi /etc/apt/sources.list deb https://mirrors.aliyun.com/debian/ buster ma ...
分类:
其他好文 时间:
2021-02-09 12:34:02
阅读次数:
0
MVC开发模式 一、MVC开发模式优点 1、提高JavaWeb开发的代码复用性,避免了重复性开发。 2、有效帮助开发人员实现业务开发中【事务管理】 二、MVC开发角色组成 C:controller,控制层 M:model,业务模型层,完成业务处理 1、dao层:直接操作数据库 2、service层: ...
分类:
Web程序 时间:
2021-02-08 11:43:53
阅读次数:
0
配置站点使用 https,并且将 http 重定向至 https。 1. nginx 的 ssl 模块安装 查看 nginx 是否安装 http_ssl_module 模块。 $ /usr/local/nginx/sbin/nginx -V 1 如果出现 configure arguments: - ...
分类:
Web程序 时间:
2021-02-08 11:41:11
阅读次数:
0
简单的方法是 直接在Controller内的接口参数前加上校验注解(@NotBlank...等),此时需在类上加注解 @Validated即可.当校验参数过多,这种方法使接口参数看起来过于臃肿,代替的选择是在实体类上使用 @Validated 注解来进行一些参数的验证. 一、实体类加注解 @Null ...
分类:
编程语言 时间:
2021-02-06 12:13:11
阅读次数:
0
1、编辑C代码 2、按F5 3、在弹出框中输入下面的代码: cmd /k gcc -o "$(CURRENT_DIRECTORY)\$(NAME_PART).exe" "$(FULL_CURRENT_PATH)" && CLS && "$(CURRENT_DIRECTORY)\$(NAME_PART ...
分类:
其他好文 时间:
2021-02-06 12:12:54
阅读次数:
0
Dos命令 cmd命令打开方式 开始+系统+命令提示符 WIN+R+cmd 文件夹下shift+右键 我的电脑文件地址前+cmd8 常用dos命令 #盘符切换 e: #查看目录下所有文件 dir #切换目录 cd(change directory) #返回上一级 cd.. #清理屏幕 cls #退出 ...
分类:
其他好文 时间:
2021-02-06 12:11:06
阅读次数:
0
Simplify Path (M) 题目 Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system, co ...
分类:
其他好文 时间:
2021-02-06 11:56:45
阅读次数:
0
@ControllerAdvice,顾名思义,这是一个增强的 Controller。使用这个 Controller ,可以实现三个方面的功能: 全局异常处理 全局数据绑定 全局数据预处理 全局异常处理 使用 @ControllerAdvice 实现全局异常处理,只需要定义类,添加该注解即可定义方式如 ...
分类:
其他好文 时间:
2021-02-05 10:33:02
阅读次数:
0
zookeeper.properties # the directory where the snapshot is stored. dataDir=/tmp/zookeeper # the port at which the clients will connect clientPort=2181 ...
分类:
其他好文 时间:
2021-02-04 12:14:03
阅读次数:
0
RestController和Controller的区别 @RestController = @ResponseBody + @Controller 如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,或者html,配置的视图解析器 ...
分类:
编程语言 时间:
2021-02-04 12:13:15
阅读次数:
0