建立應用名:webtest
啟動應用容器:apache-tomcat-8.5.8
1.建立乙個空目錄:webtest;
>mkdir webtest
2、進入webtest目錄,並在webtest目錄下建立空目錄web-inf;
>cd webtest
>mkdir web-inf
3、進入web-inf目錄,並在web-inf分別建立空目錄classes和空目錄lib;
>cd web-inf
>mkdir classes
>mkdir lib
4、在tomcat提供的example中copy乙個web.xml檔案,以apache-tomcat-8.5.8
為例:
>cd ...
./apache-tomcat
-8.5
在上述目錄下有乙個web.xml檔案,將此web.xml檔案copy到webtest的web-inf目錄下;
...
./webtest/web-inf
/
<?xml version="1.0" encoding="gbk"?>
xmlns="..."
xmlns:xsi="..."
xsi="..."
version="3.1">
6、在webtest根目錄下建立jsp(html)檔案:hello.jsp(hello.html);
vi hello.jsp
hello
world
!
http://localhost:8080/webtest/hello.jsp
即可看到頁面展示出hello.jsp中的內容:hello world!
若訪問不了,請參考:
注意注意tomcat配置埠是否為8080
注意埠號後是 應用名+要訪問的檔名
利用npm 建立乙個空的專案
在硬碟任意路徑下新建乙個目錄 demo1 作為專案總目錄,然後在cmd命令列工具切換到該目錄下,也可以通過直接在目錄下摁住shift 滑鼠右鍵的方式開啟powershell視窗,這樣可以在命令列工具下直達檔案目錄,快捷方便。還可以用vscode的終端工具,效果是一樣的。npm init回車後命令列裡...
OpenGL學習筆記《一》建立乙個空的視窗
最近在這個 學習opengl的相關知識,通過寫部落格的方式以加深理解。首先需要搭建好環境 接下來我們建立視窗 首先,我們需要初始化opengl的環境 glfwinit config glfw glfwwindowhint glfw context version major,3 glfwwindow...
前端 使用yeoman建立乙個空專案
利用yeoman一鍵建立專案,方便很多,不需要自己去配置很多東西 2.安裝yeoman 開啟cmd命令,使用npm install g yo 安裝yeoman yo version可以檢視是否安裝成功 3.安裝webpack 命令為 npm install g generator react web...