我的控制器目前被映射为http://example.com/fix.go之类的东西,当然,我认为这很愚蠢,想要更好的东西,比如http://example.com/fix或http://example。 com/mmm/fix没有扩展名。但是,当我尝试配置它时,我无法让它工作。我显然错过了理解整个映射的关键部分。我正在为控制器使用 Spring 3.x、tomcat 和注释。
我的 web.xml 如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name>BooBoo</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>BooBoo</servlet-name>
<url-pattern>*.*</url-pattern> <!-- was *.go when it worked -->
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
BooBoo-servlet.xml 是:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.foofoo.booboo"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
我的一个控制器配置如下:
@Controller
public class BangBangController extends BaseController {
// Used to be fix.go when it worked
@RequestMapping( value="fix", method=RequestMethod.GET )
public ModelAndView choose(
HttpSession session,
@RequestParam( value="fixId", required=false, defaultValue="-1" ) Integer fixId,
@RequestParam( value="forkId", required=false, defaultValue="-1" ) Integer forkId
)
throws Exception { ... }
}
我已经尝试将 web.xml 中的映射更改为 /mmm/* 期望像http://example.com/mmm/fix这样的 URL可以工作,但这也没有奏效。当我在浏览器中输入我认为正确的 URL 时,出现“缺少资源”错误。
我在这里胡闹什么?我缺乏什么关键的理解?我已经尝试让无扩展的东西在另一个工作项目上工作,但也无法让它去那里。我显然错过了一些东西。