
工具类
pengjwhx
个人博客地址:www.pengpipi.top
展开
-
IDEA快捷键列表
Alt+回车 导入包,自动修正 Ctrl+N 查找类 Ctrl+Shift+N 查找文件 Ctrl+Alt+L 格式化代码 Ctrl+Alt+O 优化导入的类和包 Alt+Insert 生成代码(如get,set方法,构造函数等) Ctrl+E或者Alt+Shift+C 最近更改的代码 Ctrl+R 替换文本 Ctrl+F 查找文本 Ctrl+Shift+Space 自动补原创 2017-11-14 16:38:37 · 261 阅读 · 0 评论 -
spring JavaMailSender 发送邮件
配置JavaMailSenderImpl类 ** * @Configuration 表示是配置类 * @ComponentScan("com") 需要扫描的包路径 * @PropertySource("classpath:mail.properties") 需要加载的配置文件 */ @Configuration @ComponentScan("com") @PropertySourc..原创 2018-12-03 22:07:58 · 707 阅读 · 0 评论