java Tomcat服务器404s当试图访问我的网站

l7wslrjt  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(163)

我试图使一个网站来托管我的一些个人摄影.我已经购买了使用ubuntu访问VPS.我的网站使用Sping Boot 与MySQL数据库和使用JSP.我试图让我的网站使用Tomcat服务器工作.
编辑:我忘了说,这个项目在我的M2 Macbook上用tomcat运行得很好,遵循同样的过程。
当我尝试在 VPSip:8080/service访问我的网站时,我得到这个错误:
HTTP Status 404 - Not Found Type Status Report Message请求的资源[/service/]不可用描述源服务器没有找到目标资源的当前表示或不愿意透露存在的表示。
当我访问 VPSip:8080/时,Tomcat工作正常。
我试着改变我的MainController类,让它有一个/service的Map,以前它只是“/",这没有帮助。
主控制器代码:

  1. package com.example.photographygallerysite.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. @Controller
  5. public class MainController {
  6. @RequestMapping("/service")
  7. public String start() {
  8. return "start";
  9. }
  10. }

字符串
start引用start.jsp:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Photography by Oliver Johnson</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. body {
  9. font-family: 'Arial', sans-serif;
  10. background-color: rgb(255, 253, 247);
  11. margin: 0;
  12. padding: 0;
  13. text-align: center;
  14. }
  15. h1 {
  16. color: #333;
  17. margin-top: 50px;
  18. font-family: 'Corben', Georgia, Times, serif;
  19. color: rgb(38, 24, 24);
  20. }
  21. a {
  22. display: inline-block;
  23. padding: 10px 20px;
  24. margin-top: 20px;
  25. background-color: rgb(38, 24, 24);
  26. color: #fff;
  27. text-decoration: none;
  28. border-radius: 2px;
  29. transition: background-color 0.3s;
  30. font-family: 'Nobile', Helvetica, Arial, sans-serif;
  31. }
  32. a:hover {
  33. background-color: rgba(66, 66, 66, 0.55);
  34. }
  35. .slideshow-container {
  36. max-width: 750px;
  37. margin: auto;
  38. position: relative;
  39. }
  40. .mySlides {
  41. display: none;
  42. width: 100%;
  43. animation: fade 7s linear; /* Adjust the duration as needed */
  44. }
  45. @keyframes fade {
  46. 0%, 5% {
  47. opacity: 0;
  48. }
  49. 5%, 95% {
  50. opacity: 1;
  51. }
  52. 99%, 100% {
  53. opacity: 0;
  54. }
  55. }
  56. .w3-badge {
  57. height: 13px;
  58. width: 13px;
  59. margin: 0 2px;
  60. background-color: #bbb;
  61. border-radius: 50%;
  62. display: inline-block;
  63. transition: background-color 0.6s;
  64. }
  65. .w3-badge-active {
  66. background-color: #4285f4;
  67. }
  68. /* Content separator styling */
  69. .separator {
  70. border-top: 2px solid #ccc;
  71. margin: 20px auto;
  72. width: 57%;
  73. opacity: 50%;
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <h1>Photography by Oliver Johnson</h1>
  79. <div class="separator"></div>
  80. <div class="slideshow-container w3-content w3-section">
  81. <div class="mySlides w3-animate-fading">
  82. <img src="http://ip:8080/images/firstImg.jpg" style="width:100%">
  83. </div>
  84. <div class="mySlides w3-animate-fading">
  85. <img src="http://ip:8080/images/DSC_0393.JPG" style="width:100%">
  86. </div>
  87. <div class="mySlides w3-animate-fading">
  88. <img src="http://ip:8080/images/DSC_0348.jpg" style="width:100%">
  89. </div>
  90. <div class="mySlides w3-animate-fading">
  91. <img src="http://ip:8080/images/DSC_0383.jpg" style="width:100%">
  92. </div>
  93. </div>
  94. <div class="separator"></div>
  95. <script>
  96. var myIndex = 0;
  97. carousel();
  98. function carousel() {
  99. var slides = document.getElementsByClassName("mySlides");
  100. for (var i = 0; i < slides.length; i++) {
  101. slides[i].style.display = "none";
  102. }
  103. myIndex++;
  104. if (myIndex > slides.length) {
  105. myIndex = 1;
  106. }
  107. slides[myIndex - 1].style.display = "block";
  108. setTimeout(carousel, 7000); // Adjust the timeout to match the animation duration
  109. }
  110. </script>
  111. <a href="http://ip:8080/displayAll">See all pictures</a>
  112. </body>
  113. </html>


图片库网站申请代码

  1. package com.example.photographygallerysite;
  2. import com.example.photographygallerysite.Model.Image;
  3. import com.example.photographygallerysite.repo.ImageRepository;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.boot.CommandLineRunner;
  6. import org.springframework.boot.SpringApplication;
  7. import org.springframework.boot.autoconfigure.SpringBootApplication;
  8. import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
  9. @SpringBootApplication
  10. public class PhotographyGallerySiteApplication extends SpringBootServletInitializer implements CommandLineRunner {
  11. @Autowired
  12. private ImageRepository repo;
  13. public static void main(String[] args) {
  14. SpringApplication.run(PhotographyGallerySiteApplication.class, args);
  15. }
  16. @Override
  17. public void run(String... args) throws Exception {
  18. Image firstImg = new Image();
  19. firstImg.setFilename("firstImg.jpg");
  20. firstImg.setLocation("Hartlepool");
  21. firstImg.setCamera("Old Nikon");
  22. repo.save(firstImg);
  23. Image DSC_0393 = new Image();
  24. DSC_0393.setFilename("DSC_0393.JPG");
  25. DSC_0393.setLocation("Hartlepool");
  26. DSC_0393.setCamera("Old Nikon");
  27. repo.save(DSC_0393);
  28. Image DSC_0323 = new Image();
  29. DSC_0323.setFilename("DSC_0323.jpg");
  30. DSC_0323.setLocation("Hartlepool");
  31. DSC_0323.setCamera("Old Nikon");
  32. repo.save(DSC_0323);
  33. Image DSC_0332 = new Image();
  34. DSC_0332.setFilename("DSC_0332.jpg");
  35. DSC_0332.setLocation("Hartlepool");
  36. DSC_0332.setCamera("Old Nikon");
  37. repo.save(DSC_0332);
  38. Image DSC_0348 = new Image();
  39. DSC_0348.setFilename("DSC_0348.jpg");
  40. DSC_0348.setLocation("Hartlepool");
  41. DSC_0348.setCamera("Old Nikon");
  42. repo.save(DSC_0348);
  43. Image DSC_0368 = new Image();
  44. DSC_0368.setFilename("DSC_0368.jpg");
  45. DSC_0368.setLocation("Hartlepool");
  46. DSC_0368.setCamera("Old Nikon");
  47. repo.save(DSC_0368);
  48. Image DSC_0383 = new Image();
  49. DSC_0383.setFilename("DSC_0383.jpg");
  50. DSC_0383.setLocation("Hartlepool");
  51. DSC_0383.setCamera("Old Nikon");
  52. repo.save(DSC_0383);
  53. Image DSC_0389 = new Image();
  54. DSC_0389.setFilename("DSC_0389.jpg");
  55. DSC_0389.setLocation("Hartlepool");
  56. DSC_0389.setCamera("Old Nikon");
  57. repo.save(DSC_0389);
  58. }
  59. }

sh7euo9m

sh7euo9m1#

尝试使用Sping Boot REST API的正确指南,现在我们很少使用JSP与Sping Boot 。
尝试使用一些配置并尝试发布您的application.properties

如果不存在,请添加此行

spring.mvc.view.prefix=/jsp/
spring.mvc.view.suffix=.jsp
pom.xml中添加tomcat-embed-jasper

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-test</artifactId>
  9. <scope>test</scope>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-test</artifactId>
  14. <scope>test</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>javax.servlet</groupId>
  18. <artifactId>jstl</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.tomcat.embed</groupId>
  22. <artifactId>tomcat-embed-jasper</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. </dependencies>

字符串

展开查看全部

相关问题