240 发简信
IP属地:浙江
  • 120
    hexo搭建个人博客

    搭建个人博客有很多种方式,最老牌的当属wordpress,功能丰富,但过于笨重。我想要的只是最简单的显示文章以及搜索功能,当然,样式要简洁漂亮,而且必须支持markdown语...

  • Docker 创建 MySQL 容器

    拉取镜像 查看镜像 创建并运行容器 查看容器 以上!

  • @Transactional使用这个注解,测试时报错
    Failed to retrieve PlatformTransactionManager for @Transactional test

    @RunWith(SpringRunner.class)
    @SpringBootTest
    @Transactional
    public class BaseTest {
    @test
    public void hello(){
    System.out.println("Hello Spring");
    }
    }

    SpringBoot单元测试

    Spring Boot Test Spring Boot提供了一些注解和工具去帮助开发者测试他们的应用。相较于SpringBoot1.3,SpringBoot1.4对测试有了...