1

这是我的第一篇文章,所以请放轻松。我正在尝试在 JBoss AS 7 和或 TomCat 7 上使用 spring web mvc 3.1.3 设置一个 java web 应用程序。但是在 URL 映射中发生了一些奇怪的事情。我正在关注一堆教程,但我基本上是在尝试做这个教程的第一部分。我的 WEB-INF/views 文件夹中有一个非常简单的 jsp,我希望在调用http://localhost:8080/hello/welcome. 但这不会发生。url 映射有问题。当我使用 /test/* 之类的东西时,我称http://localhost:8080/hello/test/welcome它按预期工作。当我使用 /*http://localhost:8080/hello/welcome返回一个未渲染的jsp。当我使用我的菜鸟认为应该是默认值时,我得到一个 404 资源未找到。我在 Eclipse 中运行或使用 war 文件部署的 JBoss 7.1.1 和 Tomcat 7.0.33 服务器上测试了这一切。我已经黔驴技穷了。每个谷歌结果页面都充满了紫色链接,我还没有找到我要找的东西。

有谁能帮忙吗?我知道一些信息可能会丢失,但请询问。

编辑:我忘了我使用 maven 来构建我的应用程序。这是使用 Eclipse 的 m2e wtp 插件完成的。我正在运行eclipse juno。

这是我的初始化程序(非常基本)。

Public class Initializer implements WebApplicationInitializer 
{   
public void onStartup(ServletContext servletContext) throws ServletException {
 AnnotationConfigWebApplicationContext root = new AnnotationConfigWebApplicationContext();
 root.register(WebappConfig.class);

 ServletRegistration.Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(root));
 servlet.addMapping("/");
 servlet.setLoadOnStartup(1);
}}

这是我的 WebappConfig:

@Configuration
@ComponentScan("nl.hello")
@EnableWebMvc
public class WebappConfig extends WebMvcConfigurerAdapter
{
@Bean
public InternalResourceViewResolver setupViewResolver() 
{
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/views/");
resolver.setSuffix(".jsp");

return resolver;
}

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

和控制器:

@Controller
public class HelloController {

@RequestMapping("/welcome")
public String helloWorld(Model model) {
//let’s pass some variables to the view script
model.addAttribute("wisdom", "Goodbye XML");

return "welcome"; 
}}

还有我的pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>hello</groupId>
<artifactId>hello</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
  <plugins>
    <plugin>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.3.2</version>
      <configuration>
        <source>1.6</source>
        <target>1.6</target>
      </configuration>
    </plugin>
    <plugin>
      <artifactId>maven-war-plugin</artifactId>
      <version>2.3</version>
      <configuration>
        <failOnMissingWebXml>false</failOnMissingWebXml>
      </configuration>
    </plugin>
  </plugins>
</build>
<properties>
    <project.build.sourceEncoding>utf8</project.build.sourceEncoding>
</properties>
<dependencies>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>4.1.8.Final</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
        <version>3.1.3.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>3.1.3.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.0.1</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
    <groupId>javax.inject</groupId>
    <artifactId>javax.inject</artifactId>
    <version>1</version>
</dependency>
<dependency>
    <groupId>cglib</groupId>
    <artifactId>cglib</artifactId>
    <version>2.2.2</version>
</dependency>
 </dependencies>
 </project>
4

1 回答 1

1

我解决了!我应该提到我知道7.0.15 版本之前的 tomcat的“错误”。在此版本以下,无法覆盖默认 url 映射。但正如我所说,我意识到了这一点,并且我使用了 7.0.33 版本。所以这不可能吧!?错误的!在旁注中,我应该在 jboss 的 404 页面中注意到 7.1.1 (brontes) 使用版本 7.0.13 或其他版本,并且永远不会工作。但问题是什么。好吧,我正在使用 Eclipse 的 m2e wtp 插件来构建我的应用程序。不幸的是, maven中有一些东西打破了一切。首先,我认为这是嵌入的事实,并且使用外部 Maven 源确实解决了我的问题。也许版本不同?事实证明他们都使用3.0.4。诡异的!?当我切换回嵌入式时,它起作用了。

总结:使用 webapplicationinitializer 时,使用 Tomcat 7.0.15 版本,最好使用外部 maven 源。

于 2012-12-14T10:46:23.557 回答