@ControllerAdvicepublic class WebExceptionHandler { //处理Get请求中 使用@Valid 验证路径中请求实体校验失败后抛出的异常,详情继续往下看代码 @ExceptionHandler(BindException.class) @Response ...
分类:
编程语言 时间:
2020-07-08 10:26:16
阅读次数:
285
添加 <div class="form-group"> <label class="control-label col-xs-12 col-sm-2">{:__('Qwe')}:</label> <div class="col-xs-12 col-sm-8"> <input id="c-caozuo ...
分类:
其他好文 时间:
2020-07-06 20:02:06
阅读次数:
265
在工程规模较小,不是很复杂,与硬件结合紧密,要求移植性的时候,可采用宏定义简化编程,增强程序可读性。 当宏作为常量使用时,C程序员习惯在名字中只使用大写字母。但是并没有如何将用于其他目的的宏大写的统一做法。由于宏(特别是带参数的宏)可能是程序中错误的来源,所以一些程序员更喜欢使用大写字母来引起注意。 ...
分类:
编程语言 时间:
2020-07-06 14:27:38
阅读次数:
72
fastadmin中新建了一张表,已经crud并且生成对应的菜单,然后更改某个字段的注释,发现后台的列表页的名称没有变。 解决方法:在admin >lang > zh-cn >对应的.php文件更改. 最后清除一下后台缓存,就可以了 ...
分类:
其他好文 时间:
2020-07-04 20:40:19
阅读次数:
132
This guide walks you through the process of creating a Spring application connected to a MySQL Database (as opposed to an in-memory, embedded database ...
分类:
数据库 时间:
2020-07-04 01:46:34
阅读次数:
78
导入SpringMVC项目所需要的maven依赖: <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <! ...
分类:
编程语言 时间:
2020-07-03 23:19:33
阅读次数:
74
#新建path mkdir /home/fastdfs1 #storage.conf配置修改 vim /etc/fdfs/storage.conf 配置mod_fastdfs.conf vim /etc/fdfs/mod_fastdfs.conf ...
分类:
其他好文 时间:
2020-07-03 12:08:20
阅读次数:
59
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="viewport" content="width=d ...
题目描述 飞飞国是一个传说中的国度,国家的居民叫做飞飞侠。飞飞国是一个N×M 的矩形方阵,每个格子代表一个街区。 然而飞飞国是没有交通工具的。飞飞侠完全靠地面的弹射装置来移动。 每个街区都装有弹射装置。使用弹射装置是需要支付一定费用的。而且每个弹射装置都有自己的弹射能力。 我们设第 i 行第 j 列 ...
分类:
其他好文 时间:
2020-06-28 12:34:39
阅读次数:
169
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i ...