2021年5月4日
摘要: 将博客搬至CSDN 阅读全文
posted @ 2021-05-04 22:13 dancser 阅读(46) 评论(0) 推荐(0) 编辑
  2020年11月19日
摘要: 改变字段的默认值: 为已有的字段添加默认值 ALTER TABLE table_name ALTER COLUMN column_name SET DEFAULT default_value; 删除默认值 ALTER TABLE table_name ALTER COLUMN column_name 阅读全文
posted @ 2020-11-19 21:47 dancser 阅读(1981) 评论(0) 推荐(1) 编辑
  2020年10月26日
摘要: @Select({ "<script>", "select", "id, name, user_id", "from label", "where id in", "<foreach collection='ids' item='id' open='(' separator=',' close=') 阅读全文
posted @ 2020-10-26 11:49 dancser 阅读(1890) 评论(0) 推荐(0) 编辑
  2020年10月23日
摘要: @Insert({ "<script>", "insert into table_name(column1, column2, column3) values ", "<foreach collection='Listmap' item='item' index='index' separator= 阅读全文
posted @ 2020-10-23 20:50 dancser 阅读(488) 评论(0) 推荐(0) 编辑
  2020年10月22日
摘要: shell脚本格式错误 阅读全文
posted @ 2020-10-22 12:00 dancser 阅读(140) 评论(0) 推荐(0) 编辑
摘要: DO $$ DECLARE r RECORD; BEGIN -- if the schema you operate on is not"current", you will want to -- replace current_schema() in query with 'schematodel 阅读全文
posted @ 2020-10-22 10:11 dancser 阅读(3004) 评论(0) 推荐(0) 编辑
  2020年10月14日
摘要: 热部署的功能禁用办法如下: 在application.properties文件中设置: spring.devtools.restart.enabled=false yml文件 spring.devtools.restart.enabled: false 参考资料: spring boot 热部署关闭 阅读全文
posted @ 2020-10-14 17:26 dancser 阅读(2177) 评论(0) 推荐(0) 编辑
  2020年10月13日
摘要: 阅读全文
posted @ 2020-10-13 13:35 dancser 阅读(108) 评论(0) 推荐(0) 编辑
摘要: vn更新报错,错误信息如下:Error: Can’t open fileError: ‘D:\Tomcat\apache-tomcat-7.0.56\webapps\BSHOW\.svn\pristine\24\2492ce6b3775e243a1d434966c0db6a3b9ab69b7.svn 阅读全文
posted @ 2020-10-13 10:38 dancser 阅读(2527) 评论(0) 推荐(0) 编辑
  2020年9月22日
摘要: Mybatis反向生成代码 参考资料: mybatis反向生成 阅读全文
posted @ 2020-09-22 19:18 dancser 阅读(112) 评论(0) 推荐(0) 编辑