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

  • steam怎么修改账户名(steam怎么修改账号id)

    steam怎么修改账户名(steam怎么修改账号id)

  • 苹果xr屏幕黄怎么调白(苹果xr屏幕黄怎么变白)

    苹果xr屏幕黄怎么调白(苹果xr屏幕黄怎么变白)

  • qq音乐最近常听多久更新(qq音乐最近常听怎么删除)

    qq音乐最近常听多久更新(qq音乐最近常听怎么删除)

  • 携程抢票怎么帮好友加速(携程抢票怎么帮忙助力抢)

    携程抢票怎么帮好友加速(携程抢票怎么帮忙助力抢)

  • 华为关闭指纹亮屏(华为手机关闭指纹解锁灯)

    华为关闭指纹亮屏(华为手机关闭指纹解锁灯)

  • 爱奇艺怎么竖屏观看(爱奇艺如何竖屏)

    爱奇艺怎么竖屏观看(爱奇艺如何竖屏)

  • 华为p40多大尺寸(华为p60pro多大尺寸)

    华为p40多大尺寸(华为p60pro多大尺寸)

  • 做微信辅助有什么影响(做微信辅助有什么坏处)

    做微信辅助有什么影响(做微信辅助有什么坏处)

  • 一张身份证可以注册几个微信号(一张身份证可以买两张火车票吗)

    一张身份证可以注册几个微信号(一张身份证可以买两张火车票吗)

  • 2400t内存 t是什么意思(2400t内存和2400有区别吗)

    2400t内存 t是什么意思(2400t内存和2400有区别吗)

  • office是系统软件吗(office属于什么系统)

    office是系统软件吗(office属于什么系统)

  • 属于外部储存器的是(下列存储器中,属于外部存储器的是____)

    属于外部储存器的是(下列存储器中,属于外部存储器的是____)

  • 苹果手机放歌没声音怎么回事(苹果手机放歌没声音喇叭那里有个剪刀是什么意思)

    苹果手机放歌没声音怎么回事(苹果手机放歌没声音喇叭那里有个剪刀是什么意思)

  • 苹果手机备忘录怎么长截图(苹果手机备忘录不小心删除了怎么恢复)

    苹果手机备忘录怎么长截图(苹果手机备忘录不小心删除了怎么恢复)

  • 京东商城预约在哪里看(京东的预约在哪里)

    京东商城预约在哪里看(京东的预约在哪里)

  • 华为手机有量尺功能吗(华为手机有量尺功能吗mate30)

    华为手机有量尺功能吗(华为手机有量尺功能吗mate30)

  • vrv和多联机的区别(vrv多联机空调系统原理图)

    vrv和多联机的区别(vrv多联机空调系统原理图)

  • 快手淘宝客pid是什么意思(快手的淘宝客pid是什么)

    快手淘宝客pid是什么意思(快手的淘宝客pid是什么)

  • 苹果11厚度多少(苹果11厚度多少厘米)

    苹果11厚度多少(苹果11厚度多少厘米)

  • 抖音注册方式有几种(抖音注册方式有几种电话不够)

    抖音注册方式有几种(抖音注册方式有几种电话不够)

  • 小程序怎么推广(小程序怎么推广会比较好)

    小程序怎么推广(小程序怎么推广会比较好)

  • 小米电脑触摸板没反应(小米电脑触摸板开关快捷键)

    小米电脑触摸板没反应(小米电脑触摸板开关快捷键)

  • 简述计算机为什么采用二进计数制(简述计算机为什么采用二进制数制)

    简述计算机为什么采用二进计数制(简述计算机为什么采用二进制数制)

  • win7安装sqlserver2005图文教程(启动IIS)(win7安装sqlserver2008)

    win7安装sqlserver2005图文教程(启动IIS)(win7安装sqlserver2008)

  • 织梦管理系统(DedeCms)目录结构简介(织梦系统安装教程)

    织梦管理系统(DedeCms)目录结构简介(织梦系统安装教程)

  • 企业缴纳增值税会计科目怎么做
  • 材料费用发票的记账凭证
  • 税控服务费如何入账
  • 财务报表季报申报报表要分开申报吗
  • 劳务公司开票税收分类
  • 应收账款借方负数的会计分录怎么做
  • 小规模纳税人增值税起征点
  • 个体户办理税务登记有什么好处
  • 银行收回客户误扣的费用怎么处理?
  • 以前年度长期股权投资漏记调整
  • 房产开发公司土地增值税计算方法
  • 营改增服务业税率
  • 公司股权转1元转让还涉及哪些税务风险?
  • 无票收入记账多的进项发票怎么处理?
  • 财税[2010]121号中的宗地容积率指的是什么?
  • 简易计税方法适用范围
  • 营业外收入不纳税?
  • 发票密码区出格了怎么调整
  • 增值税普通发票可以抵扣吗
  • 对方承担税费怎么做会计分录
  • 报税文件是纳税申报表吗
  • 税前扣除是好事吗
  • 电商公司贷款条件
  • 腾讯手游助手遇到未知错误
  • microsoft edge怎么设置关闭所有网页
  • 企业免征增值税证明怎么打印
  • PHP:mb_ereg_replace()的用法_mbstring函数
  • 注册表被恶意锁定怎么恢复正常
  • 衍生金融资产会计科目
  • 存货分类账目录填写样本图片
  • win11好用吗知乎
  • 预付款不退如何投诉
  • php添加扩展
  • 新罕布什尔州的邮政编码
  • php生成微信二维码
  • 企业研发费用加计扣除最新政策
  • php流程图
  • 收到某单位投入一批原材料
  • nvm 安装node
  • 残保金是应交税金吗
  • 往来款项清查账务处理
  • 特殊动产的一物数卖履行顺序
  • 装修费入账科目
  • 公司买汽车计入什么费用
  • 房东租金收据
  • 帝国cms工作流
  • 企业境外投资管理
  • 汇兑损益可能被确认为
  • 未交增值税如何计提
  • 固定资产评估减值还是升值
  • 免税申报表里的免税销售额是不含税
  • sql server获取字段长度
  • 库存现金的账务处理流程
  • 无形资产土地入账日期怎么确定
  • 库存和结存
  • 本年利润到年末还有余额吗
  • 发票超过定额了怎么处理
  • 票据利率定价调整方案
  • 怎么填写专用发票信息
  • SQL Server 2016 CTP2.3 的关键特性总结
  • 数据库备份sqlserver
  • unix系统中目录采用什么结构
  • MS DTC 事务管理器无法启动的解决方案
  • 惠普hp笔记本电脑
  • 超级本可以玩游戏吗
  • debian更改用户名
  • w10系统分辨率
  • win8搜索不到文件
  • 2016年微软股价
  • js cocos
  • cocos2d android 游戏开发学习——CCAction(二)
  • 学习使用grunt来打包JavaScript和CSS程序的教程
  • cocos2dx lua在sublime下的插件安装及查看定义
  • jquery 滑块
  • Android Study Day 3 --Android File Read And Write
  • python中sort()的用法
  • android 获取手机屏幕截图
  • 企业所得税税率10%
  • 广东政务平台网上办事大厅
  • 重庆市国家税务局电子税务局官网登录
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设