标签:-- 应该 界面 点击 apach resource 需要 local 测试的
该博客所用的版本:
tomcat version 9 (注意10有未知错误(个人测试))
Maven version3.6.3 (注意3.6.2未知错误)
servlet-api version4.0.1 Spring前导知识.png
进入:盘\apache-tomcat-10.0.4\bin(推荐下载version9);后面测试的时候version10有点问题;
版本下载为3.6.3,测试基本稳定,没有报错,只有一些警告;3.6.2听说报错很多(未测试)
Windows
的环境变量:添加到Path变量中:
找到文件下的D:\apache-maven-3.6.3\conf\setting.xml
配置阿里源:
<mirrors>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror>
<id>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
配置本地仓库:
在setting
中配置仓库信息:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<localRepository>D:\apache-maven-3.6.3\maven-repo</localRepository>
创建maven的项目
IDEA创建成功后,需要检查以下Maven的项目路径是否正确:
以上配置完成后可以进行启动了。
目标:实现tomcat中的hello world
首先创建两个文件夹:
标记Java与resources两个文件的属性(右击文件):
像类一样,新建文件夹,在下面创建HelloServlet;
导包:
为什么要找到servlet-api;因为我们的目标实现tomcat中的hello world;我们不知道要什么包,但是tomcat中应该有的;
与serlvet有关的包只有一个,可以尝试下载:
点击版本号:
导包得位置:
实现get/post得方法:
实现doget()方法中的请求:
http://localhost:8080/examples/
我们点击第一个Serlvets examples
:
查看它给出的标准实例:
复制主题内容代码到IDEA中。
<!-- web.xml中配置我们的web的核心应用-->
<servlet>
<servlet-name>helloServlet</servlet-name>
<servlet-class>com.xbhog.helloServlet</servlet-class>
</servlet>
<!-- 一个servlet对应一个Mapping映射-->
<servlet-mapping>
<servlet-name>helloServlet</servlet-name>
<!-- 请求路径-->
<url-pattern>/xbhog</url-pattern>
</servlet-mapping>
启动tomcat后结果三张图:
标签:-- 应该 界面 点击 apach resource 需要 local 测试的
原文地址:https://www.cnblogs.com/xbhog/p/14586828.html