工程搭建
1.File->new->project;
2.选择“Spring Initializr”,点击next;(jdk1.8默认即可)
3.完善项目信息,组名可不做修改,项目名可做修改;最终建的项目名为:test,src->main->java下包名会是:com->example->test;点击next;
4.Web下勾选Spring Web Start,(网上创建springboot项目多是勾选Web选项,而较高版本的Springboot没有此选项,勾选Spring Web Start即可,2.1.8版本是Spring Web);Template Englines勾选Thymeleaf;SQL勾选:MySQL Driver,JDBC API 和 MyBatis Framework三项;点击next;
5.选择项目路径,点击finish;打开新的窗口;
6.刚创建好的项目目录结构
其他与springmvc写法一致
自定义jar,war包名称
打包、启动jar包
1.maven:clean 清除缓存
2.maven:package 打jar包
注: 最后将工程打jar包 ,需要引入pom
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
如果打包过程报错: Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.567 s <<< FAILURE! - in ....
删除当前工程的测试类继续执行打包
3.复制出jar包
4.win+r cmd 进入命令符窗口
5.进入jar包放置的位置: cd desktop
6.启动jar包:java -jar springboot1-0.0.1-SNAPSHOT.jar
7.在浏览器输入访问路径
springboot部署war包到tomcat
生成war包的方式 (springboot工程很少打包为war)
1、在pom.xml中将打包方式修改为war
在版本号下面添加:war
构建项目名称 在节点下面添加:xxx
2、接着修改启动类,
@SpringBootApplication
public class Boot2Application {
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Boot2Application.class);
}
public static void main(String[] args) {
SpringApplication.run(Boot2Application.class, args);
}
}
3、打包方式:clean工程—> install或者 package 都可以在工程的target目录生成xxx.war
4、将war包放入tomcat–webapps 启动tomcat ,自动解压war包。 在浏览器访问测试。
打包、启动war包
1.maven:clean 清除缓存
2.maven:package 打war包
3.复制出war包放到tomcat–>webapps目录下
4.打开tomcat–>bin–>startup.bat 自动解压war包项目
5.在浏览器输入访问路径,进入项目