通过阅读本教程,我开始学习Spring MVC:http://viralpatel.net/blogs/spring-3-mvc-create-hello-world-application-spring-3-mvc/
好了,这个对我来说很清楚了。
在这个例子中,我有网络。配置web应用程序的xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee /web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Spring3MVC</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
以及spring servlet。用于配置mu DispatcherServlet的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/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="net.viralpatel.spring3.controller" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
而且,正如您在previus链接中看到的,我只有一个控制器类来处理指向“/hello”URL的HTTP请求……好吧……这对我来说很清楚。。。
在这个示例的旁边,我通过STS\Eclipse中的相关模板项目创建了一个新的Spring MVC项目。
此示例与 prepreius 一非常相似:我总是有 Web.xml文件来配置我的 Web 应用程序,一个用于配置调度程序Servlet 的文件和一个处理 HTTP 请求的控制器类。
但是有一些不同,我不能理解。
这是我的 Web .xml配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
这是servlet-context.xml文件(配置我的DispatcherServlet的配置文件):
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<context:component-scan base-package="com.mycompany.maventestwebapp" />
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
好的,如您所见,两个示例的配置文件有些不同:
在由STS\Eclipse创建的项目中,在servlet上下文中。xml文件我有这些配置,它们在我发布的第一个示例中不存在:
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
还行。。。我已经阅读了很多关于这个配置标签的文档:意味着你可以定义spring Beans依赖项,而不必在xml中指定一堆元素,或者实现一个接口或扩展一个基类。当Spring启动时,它会读取其xml配置文件并查找Foo,并标记了@Controller它知道该类是一个控制器,并将其视为控制器。默认情况下,spring假定它应该管理的所有类都是在bean.xml文件中显式定义的。然后是组件扫描标记,它告诉Spring它应该在类路径中搜索com.mycompany.maventestweapp下的所有类,并查看每个类,看看它是否具有@Controller,@Repository,@Service,或者@Component如果是这样,那么Spring将向bean工厂注册该类,就像你在xml配置文件中键入的那样。布拉布拉等人 布拉布拉
好的,这对我来说是绝对清楚的!!!我认为我没有问题理解为什么我在我的第二个示例的DispatcherServler配置文件中有注释驱动的标签,这很清楚。
问题在于理解为什么我在第一个示例的DispatcherServlet配置文件中没有这个标记,以及如果我尝试从servlet上下文中删除这个标记,为什么它工作得很好。xml文件(在我的第二个示例中),这不会运行,并进入错误提示:HTTP状态404-在堆栈跟踪中,我有:WARN:org.springframework.web.servlet。PageNotFound-在名为“appServlet”的DispatcherServlet中找不到URI为[maventestwebapp/]的HTTP请求的映射
我认为这是合理的行为,因为Spring没有启用注释支持,所以没有注册我的控制器类(如果我在bean.xml文件中显式定义了这个类,就可以使用注释驱动并用@Controller注释我的控制器类),所以不能使用这个bean的方法来处理HTTP请求...好的...这听起来不错...
但是为什么在第一个例子中没有注释驱动的标签?我没有注释驱动的标记(所以我不允许使用注释来声明什么类是Spring bean,比如控制器),并且我没有在beans.xml文件中显式声明这个类...所以不应该工作,因为当我删除注释驱动的标签时,第二个例子不工作...但是它工作了:-/
我快疯了,想知道为什么...
拜托,你能帮我吗?
非常感谢
安德莉亚
<代码>
它是通过org.springframework.web.servlet中的AnnotationDrivenBeandFinitionParser实现的。配置包
如果您有适当的映射(如果需要,您可以显式添加所需的bean),则您的简单控制器不需要工作。但是,如果您想做一些或多或少高级的事情,例如JSR 303验证、使用JSON实现REST服务、为MVC注册转换服务,这个标签会很有用,因为它将这些服务的配置保存在一个地方。
这就是为什么它包含在Spring模板项目中(模板项目是开发Spring应用程序的起点(因此您可以直接将@响应体
放在控制器方法返回的值上或添加转换器到MVC)而不仅仅是Spring学习者的示例)。
另请注意,处理程序映射配置在 Spring 3.1 中已更改:
在Spring 3.1之前,类型和方法级别的请求映射在两个单独的阶段中进行检查 - 首先通过默认注释HandlerMapping选择控制器,然后由注释方法HandlerAdapter缩小了调用的实际方法。
实现JUnits的大多数示例代码都以以下注释的重要性开始: null 请协助。
我正在从文档中学习反应,但不确定在这个例子中超级()做什么。通常,它不需要传递给创建新实例的参数,然后调用React吗?组件的构造函数方法将这些参数合并到实例中?没有任何争论它是做什么的?
问题内容: 我得到这个错误 01-14 12:20:57.591:E / AndroidRuntime(1825):原因:android.content.res.Resources $ NotFoundException:字符串资源ID#0x7f040003 如果我使用类变量保存上下文并执行 context.getString(R.string.create_profile_table_sql)*
我在Spring MVC世界是一个很好的消息,我有一个答案给你。 我已经通过STS\Eclipse中的相关模板项目创建了一个新的Spring MVC项目。 好的,它为我创建了一个简单的预配置的Spring MVC项目。 如果我删除了注释驱动标记,但没有删除previus资源映射标记,那么当我启动应用程序时,this dot run this dot run并进入错误sayng me:HTTP St
你能给我解释一下这段代码吗,为什么我们没有任何返回类型,代码仍然工作正常?