摘要:
在mybatis中如果我们使用#{}的方式编写的sql时,#{} 对应的变量自动加上单引号 ' ' 例如: select * from #{param} 当我们给参数传入值为user时,他的sql是这样的: select * from 'user' 参数user上会带着单引号,而单引号在mysql中 阅读全文
posted @ 2020-09-19 17:06
白熊啊
阅读(4222)
评论(0)
推荐(4)
摘要:
一、接口中只有一个参数 1.参数是基本类型or基本类型的包装类or字符串类型 这种情况下映射文件中#{}里的内容可以是任意的,你可以使用#{xxx} 或 #{abc} .....因为此时#{}相当于一个占位符。 public interface EmployeeMapper { public Emp 阅读全文
posted @ 2020-09-19 16:24
白熊啊
阅读(360)
评论(0)
推荐(0)
摘要:
一、所有/webjars/**的请求,都会去classpath:/META-INF/resources/webjars/下的目录去找资源。 二、访问/**,即访问任何资源,如果没有controller处理该请求,就默认到以下静态资源文件夹中寻找资源 "classpath:/META-INF/reso 阅读全文
posted @ 2020-09-19 13:18
白熊啊
阅读(1191)
评论(1)
推荐(0)
摘要:
步骤: 一、引入redis的starter <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 二 阅读全文
posted @ 2020-09-19 01:28
白熊啊
阅读(2695)
评论(0)
推荐(0)

浙公网安备 33010602011771号