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

  • 华为p40pro可以支持NFC吗(华为p40pro可以支持无线充电吗)

    华为p40pro可以支持NFC吗(华为p40pro可以支持无线充电吗)

  • 为什么视频发原图还是不清晰(为什么原视频很清楚发给朋友的不太清楚)

    为什么视频发原图还是不清晰(为什么原视频很清楚发给朋友的不太清楚)

  • 华为p40pro有什么新功能(华为p40pro有什么隐藏功能)

    华为p40pro有什么新功能(华为p40pro有什么隐藏功能)

  • wps为什么不能导出视频(wps为什么不能导入手机相册视频)

    wps为什么不能导出视频(wps为什么不能导入手机相册视频)

  • 华为分享发送失败(华为分享发送失败会残留数据吗)

    华为分享发送失败(华为分享发送失败会残留数据吗)

  • 为什么手机万能遥控器打不开空调(为什么手机万能钥匙连不上wifi)

    为什么手机万能遥控器打不开空调(为什么手机万能钥匙连不上wifi)

  • ghz是多少hz(15ghz是多少hz)

    ghz是多少hz(15ghz是多少hz)

  • uefi装系统的好处(uefi装系统好吗)

    uefi装系统的好处(uefi装系统好吗)

  • 惠普打印机信息页没有二维码(惠普打印机信息表打不出来)

    惠普打印机信息页没有二维码(惠普打印机信息表打不出来)

  • 三星tf卡红色和橙色区别(三星tf卡红黄黑区别)

    三星tf卡红色和橙色区别(三星tf卡红黄黑区别)

  • 微信通话点了静音对面能听到吗(微信通话点了静音会怎样)

    微信通话点了静音对面能听到吗(微信通话点了静音会怎样)

  • 华硕主板oc调节选哪个(华硕主板oc调节选keep还是oc)

    华硕主板oc调节选哪个(华硕主板oc调节选keep还是oc)

  • 电信橙分期怎么取消(电信橙分期怎么彻底解除)

    电信橙分期怎么取消(电信橙分期怎么彻底解除)

  • 苹果11前置呼吸灯怎么设置(苹果11的前置呼吸灯怎么设置)

    苹果11前置呼吸灯怎么设置(苹果11的前置呼吸灯怎么设置)

  • 华为frdal10是什么型号(华为frdal10手机报价)

    华为frdal10是什么型号(华为frdal10手机报价)

  • i78750h配什么显卡(i78750h配什么显卡合适)

    i78750h配什么显卡(i78750h配什么显卡合适)

  • 小米9下面的喇叭只有一个响(小米9下面的喇叭是什么)

    小米9下面的喇叭只有一个响(小米9下面的喇叭是什么)

  • 微信如何返回6.9.9(微信如何返回旧版本)

    微信如何返回6.9.9(微信如何返回旧版本)

  • 075583765566如何转人工(0755-83765566怎么转人工电话)

    075583765566如何转人工(0755-83765566怎么转人工电话)

  • 怎么上pixiv(怎么上皮鞋底线)

    怎么上pixiv(怎么上皮鞋底线)

  • 引号怎么用(双引号套双引号怎么用)

    引号怎么用(双引号套双引号怎么用)

  • 如何解决Win7旗舰版系统IE浏览器收藏夹栏变灰色无法点击?(windows7旗舰版为什么很多东西打不开)

    如何解决Win7旗舰版系统IE浏览器收藏夹栏变灰色无法点击?(windows7旗舰版为什么很多东西打不开)

  • arping命令  发送ARP请求报文(命令arp-a)

    arping命令 发送ARP请求报文(命令arp-a)

  • 哀悼日,网站变灰css样式(万科金域华府二手房房源)

    哀悼日,网站变灰css样式(万科金域华府二手房房源)

  • 自行研发的无形资产不确认递延所得税
  • 小规模纳税人增值税申报流程
  • 简易计税是什么税种
  • 可转债如何不转换的财务处理
  • 金税盘费服务费记入什么科目
  • 收到税务局附加税退税税款的分录
  • 待抵扣进项税额怎么算
  • 非营利组织项目
  • 境外投资子公司审计报告人民币汇率
  • 注销了出口退税怎么办
  • 固定资产大修理的标准
  • 职工教育经费税收金额怎么算
  • 购买材料产生的运杂费怎么做分录
  • 房地产公司苗木账务处理
  • 材料的销售成本计算公式
  • 固定资产进项抵扣新政策2021
  • 收到供应商开具什么发票
  • 跨区域预缴企业所得税
  • 固定资产被替换部件的会计处理
  • 个人所得税完整证明
  • 小规模纳税人补开发票如何申报增值税
  • 账面销项税额与申报表不一致怎么处理
  • 差额纳税的会计处理
  • 代建工地
  • 你知道怎么安装
  • 销售费用里面的支付的安装人工费汇算清缴时计入哪里
  • win11修改版
  • thinkphp invoke
  • 非货币性资产交换
  • 出差午餐补助公职出差
  • 扣税的账户是基本户还有一般户
  • 库存现金科目的辅助核算项目为日记账
  • 公司法人的车租给公司怎么开发票
  • 制造费用哪些是变动的哪些是固定的
  • 货款必须对公帐户支付吗
  • 公允价值变动损益借贷方向增减
  • 房地产企业收到定金是否要预缴税款
  • 辞退福利是短期还是长期
  • 出租无形资产取得的收益计入什么科目
  • 无形资产加计扣除怎么算举例
  • 受托代销的含义
  • 没有收到房租发票
  • 企业所得税汇算清缴操作流程
  • 销售商品发生的应收账款入账价值包括
  • 营改增之后是不是就没有营业税了
  • 财政非税收入支付平台
  • 收到跨月的费用发票怎么入账
  • 超市的进场费怎么入会计科目
  • 处置固定资产和报废固定资产区别
  • 现代服务业包括哪些
  • ubuntul
  • 启动sqlserver服务的命令
  • mysql修改默认字符集和校对规则
  • window10 bitlocker
  • Win10预览版更新弹窗如何关闭
  • 从硬盘安装系统
  • 还原windows是什么意思
  • 电脑找不到关机选项了怎么关机
  • windows8中“同步你的设置”使用介绍(让你的设置自动同步)
  • windows xp怎么设置桌面
  • win7升级win8.1失败
  • linux临时修改编码
  • mount挂载文件系统
  • 没有触屏如何使手机充电
  • windows8.1升级到windows10
  • cocos2d setTextureRect用法
  • vs2013怎么配置环境
  • android.json
  • nodejs websocket客户端
  • Node.js中的核心模块包括哪些内容?
  • javaweb开发技术有哪些
  • jquery和css的区别
  • python动态绑定属性
  • 测验2:python基本图形绘制
  • 个人所得税代扣代缴会计分录
  • 税务稽查工作底稿属于什么证据
  • 上海社保三方协议
  • 北京鼓楼医院网上挂号app
  • 国家税务局的单位性质是什么
  • 如何挑选烟叶等级
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设