位置: 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猜数字游戏+表单)

  • 荣耀30青春版和荣耀30的区别有哪些(荣耀30青春版和荣耀30哪个好)

    荣耀30青春版和荣耀30的区别有哪些(荣耀30青春版和荣耀30哪个好)

  • 小度不能语音控制了怎么办(小度不能语音控制风扇)

    小度不能语音控制了怎么办(小度不能语音控制风扇)

  • 竹子众淘是什么样的平台(竹子众淘是个什么东西)

    竹子众淘是什么样的平台(竹子众淘是个什么东西)

  • 苹果11怎么设置横屏使用(苹果11怎么设置电量显示100%)

    苹果11怎么设置横屏使用(苹果11怎么设置电量显示100%)

  • 苹果手机音频坏了什么原因(苹果手机音频坏了是什么症状)

    苹果手机音频坏了什么原因(苹果手机音频坏了是什么症状)

  • r9 270x相当于什么n卡(r9270x相当于n卡什么水平)

    r9 270x相当于什么n卡(r9270x相当于n卡什么水平)

  • p10是什么意思(混凝土p10是什么意思)

    p10是什么意思(混凝土p10是什么意思)

  • 荣耀30支持无线充电嘛(荣耀30支持无线耳机吗)

    荣耀30支持无线充电嘛(荣耀30支持无线耳机吗)

  • 华为荣耀的语音助手怎么唤醒(华为荣耀的语音助手可以改名字吗)

    华为荣耀的语音助手怎么唤醒(华为荣耀的语音助手可以改名字吗)

  • 笔记本电脑密码忘记了怎么重置密码(笔记本电脑密码正确却打不开)

    笔记本电脑密码忘记了怎么重置密码(笔记本电脑密码正确却打不开)

  • 手机屏幕锁忘记了怎么才能解锁(手机屏幕锁忘记密码了怎么办)

    手机屏幕锁忘记了怎么才能解锁(手机屏幕锁忘记密码了怎么办)

  • ipad air是什么型号(苹果平板ipadair是什么型号)

    ipad air是什么型号(苹果平板ipadair是什么型号)

  • codemeter控制中心是什么(codemeter控制中心怎么出来)

    codemeter控制中心是什么(codemeter控制中心怎么出来)

  • 主板芯片组和主板什么关系(主板芯片组和主板型号)

    主板芯片组和主板什么关系(主板芯片组和主板型号)

  • 关联qq是什么意思啊(关联qq的意思)

    关联qq是什么意思啊(关联qq的意思)

  • 开热点要钱吗(热点开一个小时多少流量)

    开热点要钱吗(热点开一个小时多少流量)

  • 腾讯会员可以退钱吗(腾讯会员可以退款取消吗)

    腾讯会员可以退钱吗(腾讯会员可以退款取消吗)

  • 在文档中怎么画下横线(在文档中怎么画横线)

    在文档中怎么画下横线(在文档中怎么画横线)

  • 快手黄钻怎么提现快币(快手黄钻怎么提现到微信)

    快手黄钻怎么提现快币(快手黄钻怎么提现到微信)

  • 苹果怎么安装哔咔漫画(苹果手机怎么安装bilibili)

    苹果怎么安装哔咔漫画(苹果手机怎么安装bilibili)

  • soul怎么看谁看过我(soul怎么看谁看过你)

    soul怎么看谁看过我(soul怎么看谁看过你)

  • 闲鱼怎么设置密码(闲鱼怎么设置密码登录第一次)

    闲鱼怎么设置密码(闲鱼怎么设置密码登录第一次)

  • 小遛共享车费退不了吗(小遛共享退了押金还能骑吗)

    小遛共享车费退不了吗(小遛共享退了押金还能骑吗)

  • 浏览器闪退是什么原因(浏览器闪退是什么原)

    浏览器闪退是什么原因(浏览器闪退是什么原)

  • 荣耀20pro有红外吗(荣耀80pro有红外功能吗)

    荣耀20pro有红外吗(荣耀80pro有红外功能吗)

  • 苹果x双摄像头使用技巧(苹果x双摄像头怎么切换)

    苹果x双摄像头使用技巧(苹果x双摄像头怎么切换)

  • vivox27有没有闪充(vivox27闪光灯提醒怎么不亮)

    vivox27有没有闪充(vivox27闪光灯提醒怎么不亮)

  • 美团众包自动接单怎么开(美团众包自动接派单)

    美团众包自动接单怎么开(美团众包自动接派单)

  • 苹果7plus震动功能失效(苹果7p震动坏了怎么修)

    苹果7plus震动功能失效(苹果7p震动坏了怎么修)

  • 电脑开机出现红色三角标志(电脑开机出现红色的功能界面)

    电脑开机出现红色三角标志(电脑开机出现红色的功能界面)

  • 外商投资合伙企业法
  • 天然气管道抢维修工作总结
  • 企业给员工交公积金国家有规定的
  • 未开票收入如何红冲
  • 赠送代金券的广告语
  • 股权转让产生的印花税
  • 未交增值税借方表示什么
  • 报销用专票
  • 企业所得税的研究论文范文
  • 其他收益科目代码
  • 发票的收款人复核怎么写
  • 个人所得税里累计专项扣除是什么意思
  • 苗木属于农产品中哪一类
  • 本期进项税大于销项税
  • 发出商品是用进货吗
  • 房地产企业汇算清缴要点
  • 本月实现利润总额的25%计算并结转应交所得税
  • 逾期抵扣办理申请书模板
  • 逾期支付工程款利息计算
  • 进口货物会计分录举例
  • 销售货款会计分录怎么做
  • 生产企业上税如何计算?
  • 专票住宿费认证怎么操作
  • 房地产企业土地增值税清算案例
  • 长期股权投资的初始计量
  • 加盟费需要缴纳多少税
  • 免征增值税项目销售额含税吗
  • 印花税的缴纳方式包括
  • cmos bjt
  • Yii2使用驼峰命名的形式访问控制器的示例代码
  • window10最新20h2
  • ElementPlusError:[ElPagination] 你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档
  • 新电商行业
  • 员工冲借款应该怎么做账
  • 逾期利息算法
  • php官方微信接口有哪些
  • php如何上传1个g以上的文件
  • 有限公司股权转让怎么办理流程
  • 供热企业有哪些
  • 管家婆实物仓库怎么用
  • 企业应付账款的会计分录
  • elementui的upload组件详解
  • bootstrap easyui结合
  • 网络课平台用交税吗
  • 应交税费下的科目设置
  • 应收账款抵借的例题
  • 税务机关代开的增值税发票要加盖发票专用章吗?
  • 项目差旅费能计入项目费用吗
  • 新版电子税务局怎么增加办税人员
  • 工资包含福利费吗
  • 定期定额征收和核定征收哪个好
  • 应收账款坏账计提比例新标准
  • 采购固定资产怎么做账
  • 工程结算怎么结转收入
  • 个人所得税计算方法2023计算器
  • 盈余公积分配现金股利会影响留存收益吗
  • 内部转账单怎么填制
  • 工会经费计提按照应发工资还是实发工资
  • 营业外支出包括
  • 拿支票取钱
  • 以前年度损益调整账务处理分录
  • 法定节假日报税顺延几天
  • 在建工程领用物资进项税
  • airdrop怎么用?
  • linux文件系统损坏
  • win7系统如何打开
  • windows7开机
  • windows8装 .NET 3.5 时出现0x800F081F错误解决方法
  • 嵌入js
  • 批处理/d
  • if iferror find
  • cocos2dx4.0入门
  • shell脚本-lt
  • 安卓手机管家如何卸载
  • jquery命名空间
  • 安卓怎么记录时间
  • androidday3
  • 安卓app活动
  • 大管家多少集
  • 德税手卷烟海淘
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设