Springboot整合外置的tomacat及使用JSP开发

Springboot整合外置的tomacat及使用JSP开发

  *Springboot整合JSP,项目类型一定要为war类型,否则找不到页面;

 在整合JSP的时候不要把jsp放到resources目录下,放入resource目录可能会被别人访问到jsp;
1.springboot默认自带一个内置的tomacat,不需要打war包,直接通过jar包就可以运行;
  但是如果有需要整合jsp开发,就需要单独配置一个外置的tomacat,需要打war包;

2.Springboot整合jsp步骤:
  1.新建springboot项目,war包
     注意:provided:项目打包时,不将tomacat的jar包一起打包;
       
            org.springframework.boot
            spring-boot-starter-tomcat
            provided
        


          org.apache.tomcat.embed
          tomcat-embed-jasper    
       

   2.建立基本的目录结构;
     webapps/WEB-INF(需要)
     webapps/WEB-INF/web.xml该目录springboot可以自动配置,不需要该目录;
     webapps/index.jsp
   3.创建tomacat实例,部署项目;
   4.访问:http://域名:端口/项目名/文件名
           http://localhost:8080/demo/index.jsp
   5.配置视图解析器
     在springboot中通过全局配置文件修改;
     spring.mvc.view.prefix=/WEB-INF/views
     spring.mvc.view.suffix=.jsp
    6.如果一个war包的springboot项目,
    在启动服务器Tomacat的是,会自动调用ServletInitializer类中configure()方法;
    而configure()会调用springboot的主配置类,从而启动springboot,即在tomacat启动的时候,首先会启动tomacat,然后启动springoboot;

你可能感兴趣的:(springboot)