nohup java -jar productQualification.jar --spring.profiles.active=prod $

c 复制代码
root@product-qualification:~# nohup java -jar productQualification.jar --spring.profiles.active=prod $
nohup: ignoring input and appending output to 'nohup.out'

1、application.yml

yml 复制代码
server:
  compression:
    enabled: true
  tomcat:
    basedir: logs
    accesslog:
      enabled: true
      directory: .
    max-threads: 3000
  servlet:
    session:
      timeout: 12h
#      timeout: 30
      cookie:
        name: VENDER_SID
spring:
  profiles:
    active: @profileActive@
#    active: test
  application:
    name: api
  servlet:
    multipart:
      max-file-size: 300MB
      max-request-size: 300MB
  datasource:
    druid:
      initial-size: 2
      min-idle: 2
      max-active: 50
      max-wait: 30000
      stat-view-servlet:
        login-username: admin
        login-password: productQualification
      remove-abandoned: false
      remove-abandoned-timeout-millis: 180000
      log-abandoned: false
  main:
    allow-bean-definition-overriding: true
feign:
  client:
    config:
      # 设置FooClient的超时时间
      midjourney:
        connectTimeout: 600000
        readTimeout: 600000
相关推荐
No regret.4 分钟前
JVM内存模型、垃圾回收机制及简单调优方式
java·开发语言·jvm
小林想被监督学习1 小时前
Spring Boot 整合 RabbitMQ(在Spring项目中使用RabbitMQ)
spring boot·spring·java-rabbitmq
爱学习的小羊啊1 小时前
从零开始掌握Spring MVC:深入解析@Controller与@RequestMapping注解的使用
java·spring·mvc
小李不想输啦4 小时前
什么是微服务、微服务如何实现Eureka,网关是什么,nacos是什么
java·spring boot·微服务·eureka·架构
张铁铁是个小胖子4 小时前
微服务学习
java·学习·微服务
ggs_and_ddu4 小时前
Android--java实现手机亮度控制
android·java·智能手机
敲代码娶不了六花6 小时前
jsp | servlet | spring forEach读取不了对象List
java·spring·servlet·tomcat·list·jsp
Yhame.6 小时前
深入理解 Java 中的 ArrayList 和 List:泛型与动态数组
java·开发语言
是小崔啊7 小时前
开源轮子 - EasyExcel02(深入实践)
java·开源·excel
myNameGL8 小时前
linux安装idea
java·ide·intellij-idea