导航到我的网络应用程序的根目录时,我想点击控制器的readTasks
方法。我在方法中设置了断点,但在服务器上调试时我没有遇到它。我正在使用Eclipse。
我唠叨:http://localhost:8080/ToDoList/我看到了我的索引页面,但没有调用控制器方法。
我的控制器:
import java.util.List;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TaskController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public List<TaskEntity> readTasks()
{
TaskEntityDao tasks = new TaskEntityDaoImpl();
return tasks.getAllTasks();
}
}
我的web.xml:
<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" >
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
我相信我缺少一些初始化控制器的配置,但我不知道该怎么做。我是否需要一个包含应用程序中每个控制器初始化的配置文件?
答案 0 :(得分:1)
您需要编写一个Spring配置文件,其中包含控制器所在软件包的组件扫描。这告诉Spring在Spring上下文加载时初始化该控制器。然后,您需要将servlet指向此配置:
foo
答案 1 :(得分:1)
您需要在web.xml
:
<servlet>
<servlet-name>Dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/mvc-dispatcher-servlet.xml</param-value>
</init-param>
</servlet>
然后在WEB-INF文件夹下创建mvc-dispatcher-servlet.xml
。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd ">
<!-- enable to scan spring annotations, specify on web package -->
<context:component-scan base-package="id.swhp.spring.web"/>
<!-- Enable Spring MVC Anotations -->
<mvc:annotation-driven/>
</beans>