java - Spring MVC 在 WEB-INF/views/package 中找不到合适的 jsp

标签 java spring jsp spring-mvc web-inf

我正在从一本名为“Spring in Action”的书中学习 Spring MVC。然而。当我点击正确的 Controller 时出现 404 错误。我使用的是注解而不是 xml 配置,所以很难从网上找到。您可以看到我正在使用的非常简单的类和配置

SpittrWebInitializer.java

package spittr.config;

import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

public class SpittrWebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class<?>[] {RootConfig.class};
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return new Class<?>[] {WebConfig.class};
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] {"/"};
    }
}

RootConfig.java

package spittr.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;

@Configuration
@ComponentScan(basePackages = "spittr",
                excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION,
                                                        value = EnableWebMvc.class))
public class RootConfig {
}

WebConfig.java

package spittr.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = {"spittr.web"})
public class WebConfig extends WebMvcConfigurerAdapter {

    @Bean
    public ViewResolver viewResolver() {
        InternalResourceViewResolver resolver = new InternalResourceViewResolver();
        resolver.setPrefix("/WEB-INF/views/");
        resolver.setSuffix(".jsp");
        resolver.setExposeContextBeansAsAttributes(true);
        return resolver;
    }

    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
    }
} 

HomeController.java

package spittr.web;

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

@Controller
public class HomeController {

    @RequestMapping(value = "/home", method = RequestMethod.GET)
    private String home() {
        return "home";
    }
}

最后在 resources/WEB-INF/views/ 包下,我有一个名为 home.jsp 的 jsp,就像;

<html>
<body>
<h1>Spring 4.0.2 MVC web service</h1>

<h3>Welcome!!!</h3>
</body>
</html>

可以访问 Controller ,所以我知道它们已被初始化,没有任何问题,但是,上下文无法找到正确的 jsp。感谢您的帮助。谢谢

最佳答案

JSP 位置不正确 WEB-INF 位置在 src/main/webapp 下,不在资源下

关于java - Spring MVC 在 WEB-INF/views/package 中找不到合适的 jsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32418708/

相关文章:

java - 两个使用liquibase的项目,如何处理变更日志中的冲突?

Java GridBagLayout组件不会到达指定位置

java RMI 和/或 JNDI : binding for objects that are not singletons

java - 使用 HikariDataSource 作为数据源对象时,如何在应用程序启动时加载存储过程?

java - JVM Tomcat Spring MVC 应用程序等待连接池超时

java - java中如何重定向到当前url?

java - 如何处理JSP下拉列表错误处理

java - 运行外部程序

java - @Transactional 不打开 Hibernate 事务

java - JSP重定向到不同的URL