相关推荐recommended
springboot 东方通(tongweb)替换tomcat(国产化)
作者:mmseoamin日期:2024-03-20

#一.修改pom文件

排除tomcat

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

添加tongweb依赖

   
        7.0.E.5
    
   
            com.tongweb.springboot
            tongweb-spring-boot-starter-2.x
            ${tongweb.version}
   
   
            com.tongweb.springboot
            tongweb-spring-boot-starter-2.x
            ${tongweb.version}
    
    
            com.tongweb
            tongweb-embed
            ${tongweb.version}
    

#二.修改application.yml文件

server.tongweb.license.type = file
server.tongweb.license.path=classpath:license.dat

1.注释掉原来tomcat的相关配置

2.添加tongweb的相关配置

3添加tongweb的本地认证配置,将认证文件license.dat放到resources文件夹下

当配置项 server.tongweb.license.type = file 时,表示 license 认证方式为本地认证

通过配置项 server.tongweb.license.path 来配置文件的存放路径。