itoo
文章平均质量分 82
hoiyaku
日日新
展开
-
【ITOO】IntelliJ IDEA安装mybatis插件(绿色免安装)
前言MyBatis plugin特点:https://plugins.jetbrains.com/plugin/7293-mybatis-pluginCompatible with both IDEA ultimate and community edition.Code completion, syntax highlighting.Smart SQL parameter comp...原创 2018-09-08 20:27:34 · 1132 阅读 · 4 评论 -
【ITOO】HTTP Status 405 – Method Not Allowed
问题: 有一个导入json文件的功能,上传到系统,写入数据库,但是过程报错 HTTP Status 405 – Method Not Allowed Type Status ReportMessage Request method ‘GET’ not supportedDescription The method received in the request-line is kno...原创 2018-09-15 19:45:04 · 1434 阅读 · 8 评论 -
消息队列MQ
MQ全称为Message Queue, 消息队列(MQ)是一种应用程序对应用程序的通信方法。应用程序通过读写出入队列的消息(针对应用程序的数据)来通信,而无需专用连接来链接它们。消息传递指的是程序之间通过在消息中发送数据进行通信,而不是通过直接调用彼此来通信,直接调用通常是用于诸如远程过程调用的技术。排队指的是应用程序通过 队列来通信。队列的使用除去了接收和发送应用程序同时执行的要求。其中较为成熟...原创 2018-10-14 17:19:09 · 218 阅读 · 4 评论 -
【前端】Axure使用入门
安装: 软件绿色版 Axure RP 8 软件链接: https://pan.baidu.com/s/1TAXg0wpyQ7nPCm1kV_PEwg 密码:81ic启动并操作: svn下载团队项目 团队开发,需要从svn上下载项目,操作如下: 输入或选择团队目录,即svn地址,同时选择本地保存目录:导入元件库 链接:https://pan.baidu.com...原创 2018-09-29 19:53:03 · 1030 阅读 · 11 评论 -
【Vue】Component template should contain exactly one root element.
问题:Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.模板语法错误组件模板应该正好包含一个根元素,如果你使用的是v-if多元素,使用v-else-if链他...原创 2019-07-14 11:32:55 · 3343 阅读 · 1 评论 -
【注解】@ApiParam @PathVariable @RequestParam
1.@ApiParam ,是注解api的参数,用于swagger提供开发者文档,文档中生成的注释内容。 @ApiOperation(value = "根据id查询") @GetMapping(value = {"/findById/{id}"}) public ItooResult findById(@ApiParam(value = "主键id", required = ...原创 2019-09-05 20:16:50 · 8128 阅读 · 0 评论