idea如何配置没有使用Maven的SpringMVC项目
时间: 2023-06-13 17:08:25 浏览: 119
如果你没有使用Maven作为你的项目构建工具,你可以手动配置SpringMVC项目的依赖。以下是配置SpringMVC项目所需的步骤:
1. 下载Spring框架和相关依赖包(包括SpringMVC、Spring Core、Spring Context等)并将它们添加到你的项目中。
2. 下载Servlet API和JSP API,并将它们添加到你的项目中。
3. 在你的项目中创建一个web.xml文件,并添加以下代码:
```
<web-app 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"
version="2.4">
<display-name>My Spring MVC Application</display-name>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
```
4. 创建一个dispatcher-servlet.xml文件,并添加以下代码:
```
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<context:component-scan base-package="com.example.controller" />
<mvc:annotation-driven />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
```
上述配置文件中,我们使用了SpringMVC的注解驱动方式,并配置了一个视图解析器。
5. 创建一个Controller类,例如:
```
package com.example.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HelloController {
@RequestMapping(value = "/hello", method = RequestMethod.GET)
public ModelAndView hello() {
ModelAndView model = new ModelAndView("hello");
model.addObject("message", "Hello World!");
return model;
}
}
```
上述代码演示了一个简单的Controller类,当访问/hello路径时,会返回一个hello.jsp视图页面,并将一个名为“message”的属性传递给视图。
6. 创建一个hello.jsp视图文件,例如:
```
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<h1>${message}</h1>
</body>
</html>
```
上述代码演示了一个简单的JSP页面,它会显示一个名为“message”的属性。
7. 启动你的项目,并通过浏览器访问http://localhost:8080/yourProjectName/hello 来测试你的SpringMVC配置是否正确。
这就是手动配置SpringMVC项目所需的步骤。请注意,这只是一个基本示例,你需要根据你的项目需求进行配置。
阅读全文