SpringBoot
学渣11
呼啦啦,燃烧吧,少女
展开
-
SpringBoot基础——创建项目
菜单 -> New -> Project -> Spring Initializer 然后点 Next 输入如图所示的两个地方的参数,其他参数不用修改,然后Next 接着左边选择 Web, 右边只勾选 Web 即可,然后点击Next 指定项目路径为 e:\project\springboot (其他位置也可以)。 如此这般之后,项目就创建成功了,就可以看到项目...转载 2018-08-26 15:20:25 · 186 阅读 · 0 评论 -
Failed to start component [Connector[HTTP/1.1-8080]]
在运行springboot 项目时候出现:Failed to start component [Connector[HTTP/1.1-8080]] 原因是端口号被占用解决方法:结束下面两个进程重新运行springboot项目即可运行成功:...原创 2019-05-03 14:21:21 · 2907 阅读 · 0 评论 -
java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null"
在使用SpringSecurity基于内存的方式的时候,发现报错:java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null" /** * 基于内存的验证:不需要用到数据库的情况 * * @param auth * @throws Ex...原创 2019-05-03 15:10:30 · 331 阅读 · 0 评论 -
SpringBoot发送邮件遇到的错误:org.springframework.mail.MailAuthenticationException: Authentication failed;
SpringBoot发送邮件时遇到的异常:org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 550 User has no permission原因:我的邮箱之前对...原创 2019-09-10 14:58:49 · 2148 阅读 · 0 评论