background picture of the home page

小网馆

Groovy+Spock单元测试

一、导入依赖Spock是基于JUnit的单测框架,提供一些更好的语法,结合Groovy语言,可以写出更为简洁的单测。<!-- groovy依赖 --><dependency> <groupId>org.codehaus.groovy</groupId&

thumbnail of the cover of the post

Windows安装Svn客户端

一、下载程序官网地址,选择最新64位下载。下载完成二、安装过程点击下一步点击下一步选择安装目录点击安装安装完成三、修改中文下载中文包下载完成点击下一步安装完成点击设置选择中文四、导出项目svn://192.168.8.245:3690/project1

thumbnail of the cover of the post

Docker搭建Seata

一、创建数据库地址https://github.com/seata/seata/blob/162f83ea851edff801bcdeb3f9ecd018db7e284d/script/server/db这里使用mysql/*SQLyog Ultimate v12.4.0 (64 bit)MySQL

thumbnail of the cover of the post

RocketMQ常用命令

一、常用命令下载地址# 配置环境变量vim /etc/profile---------------------------------export JAVA_HOME=/usr/local/jdkexport PATH=$JAVA_HOME/bin:$PATHexport ROCKETMQ_HOME

thumbnail of the cover of the post

RocketMQ消息队列

一、JMS介绍JMS(Java Message Service),是Java平台中关于面向消息中间件的接口,是一种与厂商无关的API,用来访问消息收发。它的使用场景如下:实现业务的解耦、削峰,异步跨平台,多语言分布式事务,最终一致性二、什么是消息队列2.1 消息消息(Message)是指在应用之间传

thumbnail of the cover of the post

VUE快速入门

一、第一个项目# 初始化项目npm init -y# 安装vuenpm install vue# 导入依赖<script src="./node_modules/vue/dist/vue.js"></script><!DOCTYPE html>

thumbnail of the cover of the post