Spring Boot Starters介绍

Stella981
• 阅读 466

对于任何一个复杂项目来说,依赖关系都是一个非常需要注意和消息的方面,虽然重要,但是我们也不需要花太多的时间在上面,因为依赖毕竟只是框架,我们重点需要关注的还是程序业务本身。

这就是为什么会有Spring Boot starters的原因。Starter POMs 是一系列可以被引用的依赖集合,只需要引用一次就可以获得所有需要使用到的依赖。

Spring Boot有超过30个starts, 本文将介绍比较常用到的几个。

Web Start

如果我们需要开发MVC程序或者REST服务,那么我们需要使用到Spring MVC,Tomcat,JSON等一系列的依赖。但是使用Spring Boot Start,一个依赖就够了:

<dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId></dependency>

现在我们就可以创建REST Controller了:

@RestControllerpublic class GenericEntityController {    private List<GenericEntity> entityList = new ArrayList<>();    @RequestMapping("/entity/all")    public List<GenericEntity> findAll() {        return entityList;    }    @RequestMapping(value = "/entity", method = RequestMethod.POST)    public GenericEntity addEntity(GenericEntity entity) {        entityList.add(entity);        return entity;    }    @RequestMapping("/entity/findby/{id}")    public GenericEntity findById(@PathVariable Long id) {        return entityList.stream().                filter(entity -> entity.getId().equals(id)).                findFirst().get();    }}

这样我们就完成了一个非常简单的Spring Web程序。

Test Starter

在测试中,我们通常会用到Spring Test, JUnit, Hamcrest, 和 Mockito这些依赖,Spring也有一个starter集合:

<dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-test</artifactId>    <scope>test</scope></dependency>

注意,你并不需要指定artifact的版本号,因为这一切都是从spring-boot-starter-parent 的版本号继承过来的。后面升级的话,只需要升级parent的版本即可。具体的应用可以看下本文的例子。

接下来让我们测试一下刚刚创建的controller:

这里我们使用mock。

@RunWith(SpringJUnit4ClassRunner.class)@SpringBootTest(classes = Application.class)@WebAppConfigurationpublic class SpringBootApplicationIntegrationTest {    @Autowired    private WebApplicationContext webApplicationContext;    private MockMvc mockMvc;    @Before    public void setupMockMvc() {        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();    }    @Test    public void givenRequestHasBeenMade_whenMeetsAllOfGivenConditions_thenCorrect()            throws Exception {        MediaType contentType = new MediaType(MediaType.APPLICATION_JSON.getType(),                MediaType.APPLICATION_JSON.getSubtype(), Charset.forName("utf8"));        mockMvc.perform(MockMvcRequestBuilders.get("/entity/all")).                andExpect(MockMvcResultMatchers.status().isOk()).                andExpect(MockMvcResultMatchers.content().contentType(contentType)).                andExpect(jsonPath("$", hasSize(4)));    }}

上面的例子,我们测试了/entity/all接口,并且验证了返回的JSON。

这里@WebAppConfiguration 和 MockMVC 是属于 spring-test 模块, hasSize 是一个Hamcrest 的匹配器, @Before 是一个 JUnit 注解.所有的一切,都包含在一个starter中。

Data JPA Starter

如果想使用JPA,我们可以这样:

<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-data-jpa</artifactId>        </dependency>                <dependency>            <groupId>com.h2database</groupId>            <artifactId>h2</artifactId>            <scope>runtime</scope>        </dependency>

我们接下来创建一个repository:

public interface GenericEntityRepository extends JpaRepository<GenericEntity, Long> {}

然后是JUnit测试:

@RunWith(SpringJUnit4ClassRunner.class)@SpringBootTest(classes = Application.class)public class SpringBootJPATest {    @Autowired    private GenericEntityRepository genericEntityRepository;    @Test    public void givenGenericEntityRepository_whenSaveAndRetreiveEntity_thenOK() {        GenericEntity genericEntity =                genericEntityRepository.save(new GenericEntity("test"));        GenericEntity foundedEntity =                genericEntityRepository.findById(genericEntity.getId()).orElse(null);        assertNotNull(foundedEntity);        assertEquals(genericEntity.getValue(), foundedEntity.getValue());    }}

这里我们测试了JPA自带的save, findById方法。可以看到我们没有做任何的配置,Spring boot自动帮我们完成了所有操作。

Mail Starter

在企业开发中,发送邮件是一件非常常见的事情,如果直接使用 Java Mail API会比较复杂。如果使用Spring boot:

<dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-mail</artifactId></dependency>

这样我们就可以直接使用JavaMailSender,前提是需要配置mail的连接属性如下:

spring.mail.host=localhostspring.mail.port=25spring.mail.default-encoding=UTF-8

接下来我们来写一些测试案例。

为了发送邮件,我们需要一个简单的SMTP服务器。在本例中,我们使用Wiser。

<dependency>    <groupId>org.subethamail</groupId>    <artifactId>subethasmtp</artifactId>    <version>3.1.7</version>    <scope>test</scope></dependency>

下面是如何发送的代码:

@RunWith(SpringRunner.class)@SpringBootTest(classes = Application.class)public class SpringBootMailTest {    @Autowired    private JavaMailSender javaMailSender;    private Wiser wiser;    private String userTo = "user2@localhost";    private String userFrom = "user1@localhost";    private String subject = "Test subject";    private String textMail = "Text subject mail";    @Before    public void setUp() throws Exception {        final int TEST_PORT = 25;        wiser = new Wiser(TEST_PORT);        wiser.start();    }    @After    public void tearDown() throws Exception {        wiser.stop();    }    @Test    public void givenMail_whenSendAndReceived_thenCorrect() throws Exception {        SimpleMailMessage message = composeEmailMessage();        javaMailSender.send(message);        List<WiserMessage> messages = wiser.getMessages();        assertThat(messages, hasSize(1));        WiserMessage wiserMessage = messages.get(0);        assertEquals(userFrom, wiserMessage.getEnvelopeSender());        assertEquals(userTo, wiserMessage.getEnvelopeReceiver());        assertEquals(subject, getSubject(wiserMessage));        assertEquals(textMail, getMessage(wiserMessage));    }    private String getMessage(WiserMessage wiserMessage)            throws MessagingException, IOException {        return wiserMessage.getMimeMessage().getContent().toString().trim();    }    private String getSubject(WiserMessage wiserMessage) throws MessagingException {        return wiserMessage.getMimeMessage().getSubject();    }    private SimpleMailMessage composeEmailMessage() {        SimpleMailMessage mailMessage = new SimpleMailMessage();        mailMessage.setTo(userTo);        mailMessage.setReplyTo(userFrom);        mailMessage.setFrom(userFrom);        mailMessage.setSubject(subject);        mailMessage.setText(textMail);        return mailMessage;    }}

在上面的例子中,@Before 和 @After 分别用来启动和关闭邮件服务器。

结论

本文介绍了一些常用的starts,具体例子可以参考 spring-boot-starts

更多教程请参考 flydean的博客

本文分享自微信公众号 - 程序那些事(flydean-tech)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Easter79 Easter79
3年前
Twitter的分布式自增ID算法snowflake (Java版)
概述分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点,首先他相对比较长,另外UUID一般是无序的。有些时候我们希望能使用一种简单一些的ID,并且希望ID能够按照时间有序生成。而twitter的snowflake解决了这种需求,最初Twitter把存储系统从MySQL迁移
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这