当前位置:网站首页>About the directory structure of the web application
About the directory structure of the web application
2022-08-02 06:20:00 【SteadyHeart】
The web application we make will finally be packaged as a war package and placed in the webapps directory of the tomcat server, so that it can be accessed on the network
webapps
|->oa project|->....
|->crm project
|->classes
|->lib
|->Put web resources (.html, .jsp, etc.)
classes put the compiled class file of the java code in your java directory and the configuration file under resources, the dependencies configured in pom.xml will be loaded into lib for the code in classes to call, and the webapp directory in ideaEverything will be packaged into the crmweb project directory.
边栏推荐
- Mysql return table
- 软件测试在职2年跳槽4次,你还在怪老板不给你涨薪?
- apisix-入门使用篇
- navicat connects to MySQL and reports an error: 1045 - Access denied for user 'root'@'localhost' (using password YES)
- 配合蓝牙打印的encoding-indexes.js文件内容:
- C语言中i++和++i在循环中的差异性
- MySql copies data from one table to another table
- 为什么4个字节的float要比8个字节的long大呢?
- nacos注册中心
- Android studio connects to MySQL and completes simple login and registration functions
猜你喜欢
随机推荐
H5如何实现唤起APP
Detailed installation and configuration of golang environment
[PSQL] 窗口函数、GROUPING运算符
【C语言】LeetCode26.删除有序数组中的重复项&&LeetCode88.合并两个有序数组
Meta公司内部项目-RaptorX:将Presto性能提升10倍
C语言中i++和++i在循环中的差异性
Go语学习笔记 - 处理超时问题 - Context使用 从零开始Go语言
提高软件测试能力的方法有哪些?看完这篇文章让你提升一个档次
51 MCU Peripherals: Infrared Communication
ATM系统
coredns介绍
H5接入支付流程-微信支付&支付宝支付
Redis-cluster mode (master-slave replication mode, sentinel mode, clustering mode)
MYSQL 唯一约束
测试技术之APP蓝牙连接测试
Cyber Security Learning - Intranet Penetration 4
区块元素、内联元素(<div>元素、span元素)
面试官:设计“抖音”直播功能测试用例吧
kubernetes 亲和、反亲和、污点、容忍
为什么4个字节的float要比8个字节的long大呢?