安装Rocket MQ
下载地址:下载 | RocketMQ
我下载的是:5.1.4
解压
unzip rocketmq-all-5.1.4-source-release.zip
编译
mvn -Prelease-all -DskipTests clean install -U
可能存在的问题
Failed to execute goal com.github.spotbugs:spotbugs-maven-plugin:4.2.2:spotbugs (spotbugs) on project rocketmq-common: Execution spotbugs of goal com.github.spotbugs:spotbugs-maven-plugin:4.2.2:spotbugs failed: java.lang.UnsupportedOperationException: The Security Manager is deprecated and will be removed in a future release -> [Help 1]
原因
这个问题是由于 SpotBugs Maven 插件与 JDK 17 或更高版本的兼容性问题。JDK 17 开始,安全管理器(Security Manager)已被弃用,并计划在未来版本中移除。这导致某些工具(如 SpotBugs)在使用过程中出现兼容性问题。