sheep669
sheep669
全部文章
分类
unity知识库(1)
原创(37)
学校(7)
收集(6)
百度(11)
自学(65)
自学+扩展(2)
归档
标签
去牛客网
登录
/
注册
嗨!我是 sheep669 你好呀!
" 博客虽短,但未来很长,咱慢慢往后瞧"
TA的专栏
34篇文章
1人订阅
HTML5载入播放器
1篇文章
967人学习
静态页面部署
1篇文章
499人学习
日常学习
5篇文章
506人学习
Electron 从入门到打包
1篇文章
582人学习
三级数据库
8篇文章
1769人学习
Vue学习笔记
18篇文章
1131人学习
全部文章
(共143篇)
mybatis遇到的问题
<select id="testSql" resultType="java.lang.Integer"> select case month(o.create_time) when '1' then count(*) else 0 end as 1...
mybatis
2022-10-26
0
367
时间转成秒数的工具类
创建 package com.sheep.emo.utils; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.databind.JsonSerializer; import com.fa...
实体类上date的处理
2022-10-23
0
336
Mysql遇到的问题
1.如何查询空字段 SELECT * FROM USER WHERE id ='' x SELECT * FROM USER WHERE id =NULL x 正解 SELECT * FROM USER WHERE ISNULL(id) 2.如何使用关键字(必要情况下) SE...
mysql
2022-10-23
0
349
springboot发邮箱很Easy
一个依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter...
springboot
mail
2022-10-05
0
347
cron表达式
cron表达式格式: {秒数} {分钟} {小时} {日期} {月份} {星期} {年份(可为空)} * 表示所有值 ? 表示未说明值,即不关心何值 L 表示每月最后一天 / 表示每次递增的值 - 表示一个指定的范围 在线cron表达式生成器 依赖 <depende...
cron表达式
2022-10-05
0
426
spring-boot-starter-cache 实现缓存
引入依赖 spring-boot-starter-cache (springboot内置缓存解决方案) <dependency> <groupId>org.springframework.boot</groupId> ...
spring-boot-starter-cache
springboot
2022-09-28
0
785
Springboot集成jdbc
依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId&...
springboot
jdbc
maven
2022-09-09
0
332
获取yml的属性
获取默认配置文件的属性 yml文件示例(注意层级) employee: name: 李四 age: 12 birthday: 2020-02-12 hobby: - 打球 - 代码 实体类加上@ConfigurationProperties(prefix = ...
yml
springboot
2022-09-06
0
424
字段校验 --- Hibernate-Validator
springboot引入Hibernate-Validator 依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-s...
Hibernate-Validator
2022-08-02
0
637
重新捋一捋Vuex
主要区别: dispatch VS commit dispatch:含有异步操作,数据提交至 actions 写法示例: this$.store.dispatch('SETNAV', res.data); commit:同步操作,数据提交至 mutations 写法示例: this$.s...
vuex
2022-07-23
0
436
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页