位置: IT常识 - 正文

Linux--Tomcat部署web服务接口访问报404(linux部署tomcat的war包)

编辑:rootadmin
Linux--Tomcat部署web服务接口访问报404

推荐整理分享Linux--Tomcat部署web服务接口访问报404(linux部署tomcat的war包),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:linux系统tomcat部署,linux tomcat 部署项目,linux tomcat部署,linux中tomcat部署,linux tomcat 部署项目,linux中tomcat部署web项目,linux部署tomcat的war包,linux中tomcat部署web项目,内容如对您有帮助,希望把文章链接给更多的朋友!

前两天在往服务器上的Tomcat部署Web项目上栽了跟头,Tomcat首页可以正常启动,但是web项目里的所有接口访问都报404,折腾了好久才解决,记录一下分享给大家。

一、回顾如何在tomcat部署项目。1、熟悉tomcat下各级目录作用:Linux--Tomcat部署web服务接口访问报404(linux部署tomcat的war包)

1)bin目录下是有startup和shutdown这两个启动和停止的脚本的。.bat在windows系统使用, .sh在linux系统使用。 2)log目录中catalina.out为tomcat启动日志。启动后可观察启动的情况。 3)webapp目录一般用于放置待部署项目的war包。 4)conf目录用于存放tomcat的配置文件。

2、重点关注server.xml配置<?xml version="1.0" encoding="UTF-8"?><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.--><!-- Note: A "Server" is not itself a "Container", so you may not define subcomponents such as "Valves" at this level. Documentation at /docs/config/server.html --><Server port="8005" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.startup.VersionLoggerListener"/> <!-- Security listener. Documentation at /docs/config/listeners.html <Listener className="org.apache.catalina.security.SecurityListener" /> --> <!--APR library loader. Documentation at /docs/apr.html --> <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/> <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html --> <Listener className="org.apache.catalina.core.JasperListener"/> <!-- Prevent memory leaks due to use of particular java/javax APIs--> <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/> <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener"/> <!-- Global JNDI resources Documentation at /docs/jndi-resources-howto.html --> <GlobalNamingResources> <!-- Editable user database that can also be used by UserDatabaseRealm to authenticate users --> <Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/> </GlobalNamingResources> <!-- A "Service" is a collection of one or more "Connectors" that share a single "Container" Note: A "Service" is not itself a "Container", so you may not define subcomponents such as "Valves" at this level. Documentation at /docs/config/service.html --> <Service name="Catalina"> <!--The connectors can use a shared executor, you can define one or more named thread pools--> <!-- <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" maxThreads="150" minSpareThreads="4"/> --> <!-- A "Connector" represents an endpoint by which requests are received and responses are returned. Documentation at : Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) Java AJP Connector: /docs/config/ajp.html APR (HTTP/AJP) Connector: /docs/apr.html Define a non-SSL HTTP/1.1 Connector on port 8080 --> <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/> <!-- A "Connector" using the shared thread pool--> <!-- <Connector executor="tomcatThreadPool" port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> --> <!-- Define a SSL HTTP/1.1 Connector on port 8443 This connector uses the BIO implementation that requires the JSSE style configuration. When using the APR/native implementation, the OpenSSL style configuration is required as described in the APR/native documentation --> <!-- <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" maxThreads="150" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" /> --> <!-- Define an AJP 1.3 Connector on port 8009 --> <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/> <!-- An Engine represents the entry point (within Catalina) that processes every request. The Engine implementation for Tomcat stand alone analyzes the HTTP headers included with the request, and passes them on to the appropriate Host (virtual host). Documentation at /docs/config/engine.html --> <!-- You should set jvmRoute to support load-balancing via AJP ie : <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1"> --> <Engine defaultHost="localhost" name="Catalina"> <!--For clustering, please take a look at documentation at: /docs/cluster-howto.html (simple how to) /docs/config/cluster.html (reference documentation) --> <!-- <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> --> <!-- Use the LockOutRealm to prevent attempts to guess user passwords via a brute-force attack --> <Realm className="org.apache.catalina.realm.LockOutRealm"> <!-- This Realm uses the UserDatabase configured in the global JNDI resources under the key "UserDatabase". Any edits that are performed against this UserDatabase are immediately available for use by the Realm. --> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> </Realm> <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true"> <!-- SingleSignOn valve, share authentication between web applications Documentation at: /docs/config/valve.html --> <!-- <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> --> <!-- Access log processes all example. Documentation at: /docs/config/valve.html Note: The pattern used is equivalent to using pattern="common" --> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" prefix="localhost_access_log." suffix=".txt"/> <Context docBase="SpringDataRedisDemo" path="/SpringDataRedisDemo" reloadable="true" source="org.eclipse.jst.jee.server:SpringDataRedisDemo"/></Host> </Engine> </Service></Server>

通常我们会关注 tomcat的启动端口和停止端口,确保不被占用。

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/><Server port="8005" shutdown="SHUTDOWN">

如果被占用也可以在启动日志中查到类似 “Port 8080 was already in use” 的提示。这时我们可以把端口号换一下,再重启。

----如果不是这个原因导致,下面才是重点------二、真正原因分析

我们来看下server.xml的另一项配置

<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">

appBase=“webapps”,它意味着tomcat的默认项目读取目录为webapps,这也就是为什么我们都要把项目放置在webapps下。 但是还有一个要注意的点就是,Tomcat默认只会读取webapps下的ROOT目录,通常我们打的war包如test01.war如果放置在ROOT目录下,那么启动tomcat你会看到webapps下会多一个test01的目录。但是tomcat只读ROOT目录下的文件。这就是为什么你的接口都报404,是因为它就获取不到你的资源。

三、解决方式:

修改webapps下的war包名称为ROOT.war,重新启动Tomcat即可。当看到你的war包解压到ROOT目录下的时候。就可以了。

本文链接地址:https://www.jiuchutong.com/zhishi/299851.html 转载请保留说明!

上一篇:大二学生web期末大作业 在线电影网站 HTML+CSS+JS(大二期末要考试吗)

下一篇:前端搭建猜数字游戏(内附源码)(javascript猜数字游戏+表单)

  • 未知错误3(未知错误3194)(未知错误是什么)

    未知错误3(未知错误3194)(未知错误是什么)

  • 闲鱼见面交易怎么改成物流(闲鱼见面交易怎么设置)

    闲鱼见面交易怎么改成物流(闲鱼见面交易怎么设置)

  • 支付宝怎么更改实名认证(支付宝怎么更改支付方式的顺序)

    支付宝怎么更改实名认证(支付宝怎么更改支付方式的顺序)

  • v30屏幕尺寸(v30 屏幕尺寸)

    v30屏幕尺寸(v30 屏幕尺寸)

  • cad默认工具栏没了(cad默认工具栏没反应)

    cad默认工具栏没了(cad默认工具栏没反应)

  • 华为畅聊电话什么意思(用华为畅聊打电话要电话费吗)

    华为畅聊电话什么意思(用华为畅聊打电话要电话费吗)

  • 拼多多退货商家不签收(拼多多退货商家不退款就没办法了吗)

    拼多多退货商家不签收(拼多多退货商家不退款就没办法了吗)

  • wps怎么调行距

    wps怎么调行距

  • 电脑上没有word怎么办(电脑上没有word文档 怎么建word)

    电脑上没有word怎么办(电脑上没有word文档 怎么建word)

  • 怎么关闭拼多多好友申请(怎么关闭拼多多免密支付)

    怎么关闭拼多多好友申请(怎么关闭拼多多免密支付)

  • 荣耀30s对比vivos6(荣耀30s对比荣耀x30)

    荣耀30s对比vivos6(荣耀30s对比荣耀x30)

  • 苹果xsmax 基带是哪个(iphonexsmax的基带)

    苹果xsmax 基带是哪个(iphonexsmax的基带)

  • 如何压缩ppt文件大小(ppt压缩)

    如何压缩ppt文件大小(ppt压缩)

  • 手机上录音在哪里找到(手机上录音在哪可以打开听)

    手机上录音在哪里找到(手机上录音在哪可以打开听)

  • 红米note8怎么升级系统(红米note8怎么升级miui14)

    红米note8怎么升级系统(红米note8怎么升级miui14)

  • 抖音被限制播放怎么办(抖音被限制播放怎么解决)

    抖音被限制播放怎么办(抖音被限制播放怎么解决)

  • ipad怎么接收普通短信(ipad怎么接收airdrop)

    ipad怎么接收普通短信(ipad怎么接收airdrop)

  • oppor17手机关机键在哪里(oppor17手机关机后闹钟还会响吗)

    oppor17手机关机键在哪里(oppor17手机关机后闹钟还会响吗)

  • 苹果xr拍照怎么是反的(苹果xr拍照怎么开闪光灯)

    苹果xr拍照怎么是反的(苹果xr拍照怎么开闪光灯)

  • ps储存盘满了怎么办(ps存盘满怎么办)

    ps储存盘满了怎么办(ps存盘满怎么办)

  • 快手怎么看好友关注了谁(快手怎么看好友在不在线状态)

    快手怎么看好友关注了谁(快手怎么看好友在不在线状态)

  • 打印机无法打印图片怎么办(打印机无法打印显示错误)

    打印机无法打印图片怎么办(打印机无法打印显示错误)

  • 最高超频纪录的主板是什么(目前超频最高几ghz)

    最高超频纪录的主板是什么(目前超频最高几ghz)

  • Windows安装Stable Diffusion WebUI及问题解决记录(windows安装无法继续,若要安装请重新启动)

    Windows安装Stable Diffusion WebUI及问题解决记录(windows安装无法继续,若要安装请重新启动)

  • 织梦文章自定义属性增加、修改和删除的方法(织梦添加文章如何修改高级参数)

    织梦文章自定义属性增加、修改和删除的方法(织梦添加文章如何修改高级参数)

  • 城建税计算方法有哪些
  • 技术合同免税备案流程2022年
  • 未达起征点销售额是含税还是不含税
  • 利润率多少才是正常的
  • 营改增后转让土地使用权交什么税
  • 注册了公司没有经营会怎么样
  • 土地返还款属于政府补助吗
  • 走逃发票怎么处理
  • 工地上汽车加油怎么加
  • 专用发票可以开安装费吗?
  • 拆迁安置房建设流程
  • 如何开具红字专用发票信息表
  • 加计扣除汇算清缴怎么调减
  • 金税盘点了没反应
  • 增值税发票的帐号怎么查
  • 多计提的社保费,可否计入营业外收入
  • 关联企业之间借款的处理
  • 资本公积可以退还给投资者吗
  • 借给其他企业的钱计入什么科目
  • 计提福利费会计科目
  • 报销客户车费会计分录怎么写?
  • 租入房屋修缮费用谁承担
  • 如何阻止windows10升级到11
  • 鸿蒙负一屏怎么设置
  • 年底会计人员要做什么
  • php是面向过程还是面向对象
  • php字符串定义的三种方式
  • php proto
  • 零售业的进货帐务怎么做
  • 残疾人增值税即征即退税收减免备案
  • 公司网站维护费用计哪个科目
  • 收到电子退库如何入账
  • 数据分析课
  • timit数据集
  • 织梦专题页模板
  • 接手前往年的银行余额不平怎么办?
  • dedecms主页修改
  • 非金融企业借款利息收入计入什么科目
  • 企业所得税包含营业外收入吗
  • 旧设备入账
  • 一般纳税人不开票收入怎么做账
  • 应纳税所得额是利润总额还是净利润
  • 等线支付给劳务派遣单位的工资怎么做账?
  • 销售分哪几类
  • 收到费用发票没有付款的会计分录
  • 一般纳税人支出都要交税吗
  • 印花税不小心申报几次怎么办
  • 结转本月收支
  • 企业尚未给予指定用途
  • 什么叫做未入账金额
  • 涉外收入申报单盖章
  • 外币资本金入账汇率怎样选择
  • 携税宝费用可以抵扣增值税吗
  • 房地产开发企业增值税怎么算
  • mysql好在哪里
  • win8系统安装office2010
  • 无法使用ie浏览器
  • windows命令行修改密码
  • win7卸载软件提示停止工作
  • win8安装出现了一些问题
  • 新手怎么装
  • 手动防止Ping攻击方法(无需防火墙)
  • Windowsxp桌面没有图标怎么办
  • fssm32.exe是什么进程 有什么作用 fssm32进程查询
  • msstat.exe - msstat是什么进程 有什么用
  • linux中统计字符命令
  • script在html中的用法
  • Eclipse和AndroidStudio常用快捷键对比
  • 常用的批处理文件
  • Css属性中表示字体的是
  • css选择器类选择器
  • unity自动寻路插件
  • linearlayout addview
  • 瀑布流 css
  • JavaScript split()使用方法与示例
  • jq 鼠标事件
  • 税务工会费缴费标准
  • 如何加强木材加工质量
  • 赞美税务局的话
  • 中国税务的核心价值观是什么
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设