springboot常用功能
Posted N神3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot常用功能相关的知识,希望对你有一定的参考价值。
1、常用注解
2、邮件功能
//依赖引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> //邮件配置:application.yml 或者 application.properties spring.mail.host=smtp.qq.com spring.mail.username=用户名 spring.mail.password=密码 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.required=true @Test public void sendAttachmentsMail() throws Exception { MimeMessage mimeMessage = mailSender.createMimeMessage(); MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true); helper.setFrom("123456@qq.com"); helper.setTo("888888@qq.com"); helper.setSubject("主题:我是一封有附件的邮件"); helper.setText("有附件的邮件"); FileSystemResource file = new FileSystemResource(new File("weixin.jpg")); helper.addAttachment("附件1.jpg", file); helper.addAttachment("附件2.jpg", file); mailSender.send(mimeMessage); }
以上是关于springboot常用功能的主要内容,如果未能解决你的问题,请参考以下文章