摘要:初衷看了一下相关的书籍,创建一个的应用,是那么的简单。首先,我们只是创建一个简单的并不打算使用默认的,而是使用传统的。在下创建目录并且在目录下新建,内容为页面。如果是在内置的的情况下,应用会自动重启。
初衷
看了一下spring-boot相关的书籍,创建一个hello world!的应用,是那么的简单。然而,自己动手,却很不一样。
首先,我们只是创建一个简单的hello world!并不打算使用默认的thymeleaf,而是使用传统的jsp。
当然,我们不能把自己限制于一个简单的hello world!我们要的是具有热部署功能的!
我们只是构建一个hello world! 的web应用。
打包方式选择war
起步依赖只需要选择Web和DevTools即可。
springboot默认提供thymeleaf的模板,对于从传统web开发转过来的人来说,不喜欢!
然而 spring boot并没有给我们初始化webapp目录。所以,还是手动吧。
在“src/main”下创建“webapp/WEB_INF/jsp”目录
并且在webapp目录下新建index.jsp, 内容为hello world页面。
注意是webapp目录下,不是“webapp/WEB-INF/jsp”目录。
题外话:如果你甘愿hello world!那就hello吧,反正我是 change the world!三、处理pom.xml(添加jsp支持、war的插件) 1、然后添加jsp需要的依赖jstl
2、jsp编译需要的依赖javax.servlet jstl
3、把spring-boot-starter-tomcat的provided属性注释掉 4、再添加一个插件(由于选择的是war包方式)org.apache.tomcat.embed tomcat-embed-jasper
四、配置application.propertiesorg.apache.maven.plugins maven-surefire-plugin false
server.port=9090 spring.thymeleaf.cache=false spring.thymeleaf.enabled=false spring.mvc.view.prefix=/ spring.mvc.view.suffix=.jsp五、启动应用
执行main方法启动应用
启动后访问localhost:9090即可
spring-boot + 外置tomcat + jsp 一、同样的方式初始化项目 二、同样的方式处理jsp目录 三、处理pom.mxl(添加jsp支持、war插件及排除掉) 1、然后添加jsp需要的依赖jstl4.0.0 com.lgh sample 0.0.1-SNAPSHOT war sample Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.2.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web javax.servlet jstl org.springframework.boot spring-boot-starter-tomcat org.apache.tomcat.embed tomcat-embed-jasper org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-devtools runtime org.springframework.boot spring-boot-maven-plugin org.apache.maven.plugins maven-surefire-plugin false
2、start-web排除掉tomcatjavax.servlet jstl
3、添加servlet-apiorg.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat
4、删除spring-boot-starter-tomcat依赖 5、同样添加一个插件javax.servlet javax.servlet-api 3.1.0 provided
四、同样的配置application.properties 五、启动应用org.apache.maven.plugins maven-surefire-plugin false
(idea中)在run/debug configuration窗口中,添加tomcatServer,配置部署即可
注意这种方式,application.properties中的server.port是不生效的。
踩过的坑,吃过的屎 没有热部署,特别难受 1、添加一个依赖(初始化时如果选了就不需要手动添加了)4.0.0 com.lgh client 0.0.1-SNAPSHOT war client Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.2.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat javax.servlet jstl javax.servlet javax.servlet-api 3.1.0 provided org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-devtools runtime org.springframework.boot spring-boot-maven-plugin true org.apache.maven.plugins maven-surefire-plugin false maven-compiler-plugin 1.8
2、插件添加配置(里面的configuration节点加上)org.springframework.boot spring-boot-devtools runtime
org.springframework.boot spring-boot-maven-plugin true
添加了上面的两个配置后,修改java代码后,idea中可以右键recompile重新编译
如果是在本地tomcat的情况下,idea会提示reload class。
如果是在spring boot内置的tomcat的情况下,应用会自动重启。
首先,我们用idea创建的项目中,pom.xml文件是长这样的
4.0.0 com.lgh sample 0.0.1-SNAPSHOT war sample Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.2.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools runtime org.springframework.boot spring-boot-starter-tomcat provided org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-maven-plugin
为了支持jsp,我们加入两个依赖
javax.servlet jstl
org.apache.tomcat.embed tomcat-embed-jasper provided
由于我们选择了war的打包方式,你会发现,自动创建了一个ServletInitializer类。
由于是war,还需要添加一个插件
org.apache.maven.plugins maven-surefire-plugin false
我们再src/main下创建“webapp”目录,并创建一个index.jsp文件
(还要去配置application.properties文件,把默认的模板禁用掉)
以上步骤是大部分博客的过程。这时候,我们直接用main方法的方式启动时,是酱紫的
解决办法是:
把pom文件中的spring-boot-starter-tomcat 和 tomcat-embed-jasper的 provided属性注释掉。
注释掉后,启动起来,访问localhost:8080即可看到hello world!
回到注释provided属性前,如果这时候我们把ServletInitializer注释掉
把Application类继承SpringBootServletInitializer, 像这样子
@SpringBootApplication
public class ClientApplication extends SpringBootServletInitializer{
@Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(ClientApplication.class); } public static void main(String[] args) { SpringApplication.run(ClientApplication.class, args); }
}
此时执行main方法启动应用,报错如下
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.lgh.client.ClientApplication]; nested exception is java.lang.IllegalStateException: Failed to introspect annotated methods on class org.springframework.boot.web.servlet.support.SpringBootServletInitializer
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/69346.html
摘要:如下页面模版的配置启动简单流程当我们运行的方法时调用静态方法首先是实例化初始化的时候主要做主要做三件事根据下是否存在判断是否要启动一个。将配置环境加入到监听器对象中。方法将等重要组件与上下文对象关联。自此的简单流程到此结束。 正文 说springboot的启动流程当然少不了springboot启动入口类 @SpringBootApplication public class Sprin...
摘要:这里使用的是数据库启动类上加上注解在启动类中添加对包扫描扫描多个包下的可以有以下几种方法扫描会自动加载相关配置,数据源就会自动注入到中,会自动注入到中,可以直接使用。有配置文件下的使用扫描多个包下的可以有以下几种方法扫描 Spring-Boot 学习笔记 1 Spring-Boot 介绍 1.1 什么是Spring-Boot Spring-Boot是由Pivotal团队提供的全新框架...
摘要:第二个类级别注解是。将引导应用程序,启动,从而启动自动配置服务器。比如想使用不同版本的,具体如下在标签中还可以指定编译的版本和项目的编码格式指定项目编码为使用插件可以为项目提供的操作方式,的个,默认。 引言 Spring 框架对于很多 Java 开发人员来说都不陌生。Spring 框架包含几十个不同的子项目,涵盖应用开发的不同方面。如此多的子项目和组件,一方面方便了开发人员的使用,另外...
摘要:学习笔记使用很容易创建一个独立运行运行内嵌容器准生产级别的基于框架的项目,使用你可以不用或者只需要很少的配置。异常消息如果这个错误是由异常引起的。错误发生时请求的路径。 Spring-Boot 1.5 学习笔记 使用Spring Boot很容易创建一个独立运行(运行jar,内嵌Servlet容器)、准生产级别的基于Spring框架的项目,使用Spring Boot你可以不用或者只需要很...
摘要:现在这还是一个空的项目,我们可以在标签中添加我们需要的依赖,例如添加的依赖。修改我们的配置如下目前我们的这个项目还没有导入任何,这点可以通过执行命令确定。 本篇文章是SpringBoot最入门的介绍。我们不借助任何额外的工具,从无到有创建一个Spring Boot的web项目,并运行这个项目。 项目构建 归根结底,Spring Boot就只是一个框架,几个jar而已,没什么神奇的。但使...
阅读 3854·2021-11-18 13:21
阅读 4516·2021-09-27 14:01
阅读 3083·2019-08-30 15:53
阅读 2349·2019-08-30 15:43
阅读 1702·2019-08-30 13:10
阅读 1468·2019-08-29 18:39
阅读 861·2019-08-29 15:05
阅读 3296·2019-08-29 14:14