首先我已经配置了跨域 @Configuration public class CrosConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**...
mybatis-plus 表名添加前缀
1、使用mybatis-plus自身的查询构造去,只需要在全局配置中添加如下配置 mybatis-plus: mapper-locations: classpath:mappers/*Mapper.xml # mapper映射文件 global-config: db-config: ...
mybatisplus @Select注解中拼写动态sql异常
使用mybatisplus后,手写SQL语句很少了,偶尔使用@Select时, 之前一直用实体类传递参数,完全能够正常使用,今天换成了参数传递,报下面的错误 @Select("<script>" +"select * from mi...
mybatis中@Param的用法
mybatis中@Param的用法 一、方法有多个参数 @Select("SELECT * from " + PUE_TABLE_NAME + " where resourceId = #{resourceId} and resourceType = #{resourceType} and removed =0") Pue selectByReso...
golang开websocket client的示例代码
package main import ( "flag" "log" "net/url" "os" "os/signal" "time" "github.com/gorilla/websocket" ) var addr = flag.String("addr", "localhost:8080", "http service address...
为什么java的除法/会自动取整、不保留小数呢?
今天遇到个问题 求0-10的平均值 public static void main(String args[]) { int m=0; for(int i=0;i
@ApiModelProperty的用法
@ApiModelProperty()用于方法,字段; 表示对model属性的说明或者数据操作更改。 @ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response = “接口返回参数类型”, notes = “接口发布说明”。...
TypeScript-箭头表达式
箭头表达式: 用来声明匿名函数,消除传统匿名函数的this指针问题 单行 var sum = ( arg1, arg2 ) => arg1 + arg2; 多行 var sum = ( arg1, arg2 ) => { return arg1 + arg2 } 一...
TypeScript参数的可选参数
可选参数是指: 在方法的参数声明后面用问号来标明此参数为可选参数 function test(a:string, b?:string, c:string = "jojo"){ } 看到b后面的问号没?这个就是可选参数啦 如果b没传,我们是不...
TypeScript的操作符…(三个点的用法)
操作符的作用是用来声明任意数量的方法参数 function func1( ...args ) { args.forEach(function(arg){ console.log(arg); }) //这边在调用这个方法的时候,你可以用传任意参...