ruoyi-vue国产化适配之东方通TongWEB

小编用的是TongWeb嵌入式版本,个人感觉适配器来比较简单。直接上代码:

pom文件修改,ruoyi-framework中,spring-boot-starter-web排除掉tomcat,田间tongweb依赖。


        
            org.springframework.boot
            spring-boot-starter-web
            
                
                    org.springframework.boot
                    spring-boot-starter-tomcat
                
            
        
        
        
            com.tongweb.springboot
            tongweb-spring-boot-starter-2.x
            7.0.E.6_P4
        

将授权文件放入下图目录下,配置文件添加以下代码ruoyi-vue国产化适配之东方通TongWEB_第1张图片

tongweb:
    #最大工作线程
    max-threads: 2000
    #最大连接数
    max-connections: 10000
    #最大等待队列
    accept-count: 2000
    #授权
    license:
      type: file
      path: classpath:QRlicense.dat
      #path: /opt/server/QRlicense.dat

为了方便更换授权文件,指定文档目录。这样就可以启动了。

ruoyi-vue国产化适配之东方通TongWEB_第2张图片

这样就成功了。

你可能感兴趣的:(ruoyi-vue国产化适配,java,spring,boot)