1. 新建一个Springboot项目Study (PS: 这个不需要演示了吧?)
注意pom.xml,是spring-boot-starter,不是spring-boot-web-starter
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2. @SpringBootApplication 方法去实现CommandLineRunner接口,并重写Run方法。我们的代码就写在Run方法里,这里我们就循环输出些数字即可,如下:
@SpringBootApplication
public class StudyApplication implements CommandLineRunner {
public static void main(String[] args) {
SpringApplication.run(StudyApplication.class, args);
}
@Override
public void run(String... args) throws Exception {
for(int i=1;i<11;i++)
{
System.out.println(i);
}
}
}
3. 打包,如果不是第一次,先Run clean (找到clean,右键就能看到菜单了)
然后Run package命令
4.等待完成后,找到项目的target文件夹,可以看到已经打包成jar文件啦
5. 直接在该目录使用cmd命令,就能直接打开命令窗口并定位到该目录
使用java -jar命令运行jar
6. 顺利运行