tomcat配置上下文
Quickest and may be the best solution is to have below content in <TOMCAT_INSTALL_DIR>/conf/Catalina/localhost/ROOT.xml
上面路径中不存在的目录和文件需要自己创建
<Context
docBase="/your_webapp_location_directory"
path=""
reloadable="true"
/>
And your webapp will be available at
<TOMCAT_INSTALL_DIR>/conf/Catalina/localhost/ROOT.xml
<Context docBase="/root/soft/dubbo-admin" path="" reloadable="true" />