ECLIPSE不能识别JSP文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ECLIPSE不能识别JSP文件相关的知识,希望对你有一定的参考价值。

我从笔记本 移植ECLIPSE到台式机上,突然发现JSP不能被识别了。(原先的可以,其他类型文件都可以) 打开OPEN WITH 里面没有JSP EDIT选项,我删除了 ECLIPSE ,换了同事的ECLIPSE 也是如此?这是什么原因?

eclipse是不支持jsp的,需要安装额外的插件。
建议下载myeclipse,它的本质是eclipse但是比eclipse多了很多的插件。
web开发建议使用:myeclipse+tomcat
参考技术A 装个MyEclipse试试

Spring Boot 2.4.3 无法识别我的“.jsp”模板

【中文标题】Spring Boot 2.4.3 无法识别我的“.jsp”模板【英文标题】:Spring Boot 2.4.3 doesn't recognize my ".jsp" templates 【发布时间】:2021-05-30 05:29:07 【问题描述】:

我正在使用 Eclipse 中的 Spring MVC 和其他依赖项、安全性等创建一个简单的 Spring Boot 项目。 为了测试应用,我创建了一个测试jsp页面,一个jsp索引,并通过“application.properties”文件配置了前缀和后缀。

我没有使用嵌入式服务器,只是在 Eclipse 中创建了一个 Tomcat 9.0 服务器并将其添加到我的项目中。 因此,要运行该项目,我只需“右键单击”根目录并选择“运行方式 --> 在服务器上运行”。

问题是:当我启动应用程序时,Spring 识别出我的“index.jsp”页面并重定向到我完美配置的 URL,但是找不到应该在该 URL 中显示的 jsp 页面(404 错误)。

一些代码:

Directory Structure Image

application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/employee_directory?useSSL=false&serverTimezone=UTC
spring.datasource.username=hbstudent
spring.datasource.password=hbstudent

spring.security.user.name=admin
spring.security.user.password=admin

spring.mvc.view.prefix=/WeatherProject/src/main/resources/templates/
spring.mvc.view.suffix=.jsp

logging.level.org.springframework=TRACE
logging.level.com=TRACE

UserController.java

package com.lvaqueiroworks.DemoWeatherProject_1.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/user")
public class UserController 

    @GetMapping("/list")
    public String listUsers() 
        return "list-users";
    
    

list-users.jsp

<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
        <p>Hii</p>
    </body>
</html>

index.jsp

<% response.sendRedirect("user/list"); %>

WeatherProjectApplication.java(主文件,但不用于运行应用程序)

package com.lvaqueiroworks.WeatherProject;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class WeatherProjectApplication 

    public static void main(String[] args) 
        SpringApplication.run(WeatherProjectApplication.class, args);
    



【问题讨论】:

【参考方案1】:

UserController 中使用@RestController 注释

【讨论】:

以上是关于ECLIPSE不能识别JSP文件的主要内容,如果未能解决你的问题,请参考以下文章

eclipse WEB-INF下文件夹中的jsp文件无法运行

怎么用eclipse运行jsp?

eclipse运行jsp显示输入无效

Eclipse中如何进行新文件类型(File types)的关联识别?

web-inf下的jsp怎么访问

Tomcat能正常启动,可以访问tomcat主页,却在eclipse中不能访问webapp中的项目的jsp文件,这是啥原因?