当前位置:网站首页>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.
边栏推荐
- LeetCode brush topic series - 787 K station transfer within the cheapest flight
- Timing task library in the language use Cron, rounding
- navicat无法连接mysql超详细处理方法
- Introduction to Grid Layout
- Packaging and deployment of go projects
- coredns介绍
- 非关系型数据库MongoDB的特点及安装
- Mysql 回表
- MySQL 8.0.29 decompressed version installation tutorial (valid for personal testing)
- Use the browser's local storage to realize the function of remembering the user name
猜你喜欢
随机推荐
MYSQL 唯一约束
c语言:查漏补缺(三)
kubernetes 亲和、反亲和、污点、容忍
Go语言之interface详解
MySql将一张表的数据copy到另一张表中
浏览器的onload事件
MySQL 8.0.29 解压版安装教程(亲测有效)
Go语言中定时任务库Cron使用详解
Use the browser's local storage to realize the function of remembering the user name
服务器的单机防御与集群防御
Detailed explanation of interface in Go language
Install and use Google Chrome
MySQL 5.7 detailed download, installation and configuration tutorial
[C language] LeetCode26. Delete duplicates in an ordered array && LeetCode88. Merge two ordered arrays
MySQL 8.0.29 设置和修改默认密码
51单片机外设篇:ADC
Packaging and deployment of go projects
The Go language learning notes - dealing with timeout - use the language from scratch from Context
Redis database
LeetCode刷题系列 -- 787. K 站中转内最便宜的航班









