tomcat

  • jvm参数激活spring profile

新建setenv.bat

  • windows
    %tomcat%/bin下创建setenv.bat文件
  • linux
    %tomcat%/bin下创建setenv.sh文件

设置spring profile

setenv.bat加入如下内容

  • windows
    set "JAVA_OPTS=%JAVA_OPTS% -Dspring.profiles.active=dev"
  • linux
    JAVA_OPTS="$JAVA_OPTS -Dspring.profiles.active=dev"
  • 设置 cookie 处理器为 LegacyCookieProcessor

conf->context.xml

 
tomcat_第1张图片
image.png
  • 设置 tomcat 管理用户权限

conf->tomcat-users.xml



  
  
  

  • 设置 tomcat 默认网站使用的app, / 路径映射的网站,覆盖root

conf->server.xml

   
tomcat_第2张图片
image.png
  • 作为服务启动,在此处添加spring boot 参数

tomcat_第3张图片
image.png

你可能感兴趣的:(tomcat)