• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






天生自然

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 276 下一页

2022年4月11日

vue中@click.native.prevent说明
摘要: 元素中绑定了这个事件 <el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button> 1、在封 阅读全文
posted @ 2022-04-11 23:07 吴裕雄 阅读(597) 评论(0) 推荐(0)
 
TortoiseSVN安装使用
摘要: http://www.uml.org.cn/pzgl/201009214.asp 阅读全文
posted @ 2022-04-11 12:11 吴裕雄 阅读(38) 评论(0) 推荐(0)
 
安装MySQL5.7 msi
摘要: https://blog.csdn.net/weixin_44606517/article/details/121337623 阅读全文
posted @ 2022-04-11 11:38 吴裕雄 阅读(56) 评论(0) 推荐(0)
 

2022年4月9日

解决:Could not autowire. No beans of 'XXXXXXXXXX' type found.
摘要: 针对于不能够正常编译运行的解决方案:正确的导入包,如果是检查错误提示中的类的包是否导入正确,这种错误最常见在mybatis中的mapper下,比如对于mybatis的的注解版或配置文件版的解决办法: ①.配置文件版:在全局配置文件中,配置要自动扫描进容器的包 <!-- mapper scanner 阅读全文
posted @ 2022-04-09 12:17 吴裕雄 阅读(218) 评论(0) 推荐(0)
 
解决:[classpath:db/migration] (please add migrations or check your Flyway configuration)
摘要: 在yml文件中(例如:application-dev.yml) spring: #spring启动时禁用flyway功能 flyway: enabled: false 这样在项目启动时就不会进行flyway的迁移了 阅读全文
posted @ 2022-04-09 11:47 吴裕雄 阅读(677) 评论(0) 推荐(0)
 
解决:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
摘要: yml或者properties文件没有被扫描到,需要在pom文件中<build></build>添加如下.来保证文件都能正常被扫描到并且加载成功. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 --> <resources> <resource> <director 阅读全文
posted @ 2022-04-09 11:29 吴裕雄 阅读(97) 评论(0) 推荐(0)
 

2022年4月1日

解决:Data source rejected establishment of connection, message from server: "Too many connections"
摘要: SELECT @@MAX_CONNECTIONS AS 'Max Connections'; set GLOBAL max_connections=1000; http://blog.sina.com.cn/s/blog_1645e034e0102ydo5.html 阅读全文
posted @ 2022-04-01 17:21 吴裕雄 阅读(258) 评论(0) 推荐(0)
 
BPwdEncoderUtils关键代码
摘要: package com.forezp.util; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; public class BPwdEncoderUtils { private static final 阅读全文
posted @ 2022-04-01 15:42 吴裕雄 阅读(45) 评论(0) 推荐(0)
 
SwaggerConfig关键代码
摘要: package com.tszr.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import sprin 阅读全文
posted @ 2022-04-01 14:19 吴裕雄 阅读(232) 评论(0) 推荐(0)
 
UserUtils关键代码
摘要: package com.tszr.util; import org.springframework.security.core.Authentication; import org.springframework.security.core.authority.SimpleGrantedAuthor 阅读全文
posted @ 2022-04-01 14:06 吴裕雄 阅读(93) 评论(0) 推荐(0)
 
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 276 下一页