IntelliJ + Spring Web MVC
我对Intellij2016.1.3和SpringWebMVC集成有问题。我所做的步骤:
我添加到pom.xml依赖项
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> |
接下来,我将模块添加到项目中(右键单击项目名称->添加框架支持…).I选择了Spring MVC并下载(配置…-已选择所有项目)。
我创建了控制器类homecontroller.class
1 2 3 4 5 6 7 8 9 10 11 12 13 | package test.app; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class HomeController { @RequestMapping(value="/") public String test() { return"test"; } } |
号
我创建了webappWEB-INF并将web.xml放在那里。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <web-app version="3.0" 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_3_0.xsd"> <servlet> <servlet-name>WebServlet</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> </servlet> [cc lang="java"]<servlet-mapping> <servlet-name>WebServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> |
</Web应用程序[/cc]
在webappWEB-INF中,我放入dispatcher-servlet.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?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: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.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"> [cc lang="java"]<mvc:annotation-driven /> <context:component-scan base-package="test.app" /> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/" /> <property name="suffix" value=".jsp" /> </bean> |
</豆子>[/cc]
最后,我将test.jsp文件添加到webappweb-infviews中。此外,我还必须添加模块依赖项(f4->modules->dependencies->library->from maven->typed javax.servlet:jstl:1.2)
请帮助我进行部署配置,并告诉我是我用IntellijGood创建SpringWeb应用程序的方法,还是您有其他更好的方法。我需要一步一步的指导,因为我在YouTube上看了一些电影,我看到了我的Intellij中没有的选项,或者它们是隐藏的,我找不到它们。顺祝商祺!
如果您已经以正确的方式配置了所有内容,那么您应该在部署选项卡的右上角有一个加号。按下后,您将看到一个工具提示,其中包含1-2个选项:
- 工件…
- 外部源…
您通常会通过选择"artifact…"来选择当前项目的部署工件。
高温高压
在步骤11中。当你收到警告时
关于如何在Intellij中创建SpringWebMVC项目,有完整的分步教程。
在pom.xml文件中添加新的依赖项和打包属性,如下面的代码中所示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?xml version="1.0" encoding="UTF-8"?> <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> [cc lang="java"]<groupId>test</groupId> <artifactId>app</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.2.5.RELEASE</version> </dependency> </dependencies> |
</项目>[/cc]
在Intellij窗口的右上角,您将看到信息面板"需要导入Maven项目"。单击"导入更改"。
在SRC/Meave/Java中创建新的包,例如"Test.app",并将新的Java文件TestController。Java与您的控制器(以下代码)放置在一起。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package test.app; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class TestController { @RequestMapping(value="/") public String test() { return"index"; } } |
在web/web-inf/dispatcher-servlet.xml文件中,在下面粘贴代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?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: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.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"> [cc lang="java"]<mvc:annotation-driven /> <context:component-scan base-package="test.app" /> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/" /> <property name="suffix" value=".jsp" /> </bean> |
。</豆子>[/cc]
在WEB/WEB-INF目录中创建新目录"VIEWS",并将文件index.jsp从WEB目录移到那里。
在index.jsp文件中,将一些HTML代码粘贴到body部分。例如,index.jsp文件代码放在下面
1 2 3 4 5 6 7 8 9 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>$Title$</title> </head> <body> <p>HELLO WORLD</p> </body> </html> |
。
在web.xml文件中,将url pattern属性值从*.form更改为/。现在web.xml文件应该包含如下代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <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> |
。
现在右键单击项目名称并选择"打开模块设置…"。选择modules(模块)->your application name(应用程序名称)->web,然后在WebResourceDirectory窗口中将web资源目录更改为directorywebappweb,其中directory是您的intellij项目在计算机上的位置。然后单击应用并确定。
仅此而已:)现在,您可以按绿色箭头,在您最喜爱的Web浏览器中看到您的第一个Web应用程序站点。祝你好运!