一、添加依耐(pom.xml)
<dependency> <groupId>org.springframework.shell</groupId> <artifactId>spring-shell-starter</artifactId> <version>2.1.4</version> </dependency>
二、关闭sprintboot默认的tomcat
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency>
三、启动程序
@SpringBootApplication public class DreamCmd { public static void main(String[] args) { SpringApplication.run(DreamCmd.class,args); } }
四、应用程序开发(controller)
@ShellComponent //添加shell组件 @ShellCommandGroup("例1") public class Demo { @ShellMethod("a 加数 b 被加数") //添加对应的方法 public int add(int a,int b){ return a+b; } }
五、命令运行
SpringShell默认进入shell命令行模式,如下:
打包生成jar包后,可直接输入命令即可执行
标签:shell,int,spring,boot,说明,使用,SpringShell,public From: https://www.cnblogs.com/xuxiaobo/p/17059661.html