springboot结合jsp模板开发

一、为什么没有用原生的模板

        开发分工问题。

二、Springboot对jsp的支持很差

        我是如何解决springboot和Jsp的结合问题的。

        关键点:部署发布问题:

工程结构

springboot结合jsp模板开发_第1张图片

2.1 发布jar包

依赖springboot内嵌tomcat特质,以及项目独立性,依然推荐jar包发布。

处理要点:

2.11.jsp支持:

appliation.properties:

### web
server.port=8085
#server.servlet.context-path=/hecore

spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix= .jsp

## 数据源配置
spring.datasource.url=jdbc:mysql://localhost:3306/labor_statistics?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
#spring.datasource.driver-class-name=com.mysql.jdbc.Driver

# Mybatis 配置,指定了 mybatis 基础配置文件和实体类映射文件的地址
mybatis.mapperLocations=classpath:mapper/**/*.xml
mybatis.typeAliasesPackage=com.hecore.laborstatistics.model

2.12.重点 pom文件配置

jar 包还有后续配置




    4.0.0

    com.hecore.master
    labor
    1.0-SNAPSHOT
    jar

    labor-statistics-single
    
    http://www.example.com

    



    
        
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
        
    
    
        UTF-8
        1.7
        1.7
    

    

        
        
            javax.servlet
            jstl
        

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


        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.3.1
        


        
            org.jxls
            jxls
            2.4.0
        
        
            org.jxls
            jxls-jexcel
            1.0.6
        
        
            org.jxls
            jxls-poi
            1.0.12
        
        
            org.jxls
            jxls-reader
            2.0.2
        


        
            mysql
            mysql-connector-java
            6.0.3
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            org.springframework.boot
            spring-boot-starter-web
            RELEASE
        
        
            junit
            junit
            4.11
            test
        
    

    
         
        
            
                src/main/webapp
                META-INF/resources
                
                    **/**
                
            
       
        
        
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                1.4.2.RELEASE
            
        
    

2.2 发布war包

2.21 pom去掉原生tomcat,设置war

     

          war

         
           org.springframework.boot
           spring-boot-starter-tomcat
           provided
        

2.22 修改启动类

   package com.hecore.labors;

    import org.mybatis.spring.annotation.MapperScan;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;

    @SpringBootApplication
    @MapperScan(value = "com.hecore.laborstatistics.dao")
    public class LaborStatisticsApplication  extends SpringBootServletInitializer {
         @Override
          protected SpringApplicationBuilder configure(SpringApplicationBuilderapplication) {
                  return application.sources(LaborStatisticsApplication.class);

          }
    }

 

你可能感兴趣的:(java)