这是我的第一篇文章,所以请放轻松。我正在尝试在 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>