赞
踩
直到现在从Eclipse向IDEA转的人越来越多,但是IDEA的项目创建让人摸不清头脑,因此这里我创建一个非maven的ssm工程,供大家练练手,进一步的了解IDEA在项目中的使用。
首先创建一个工程
选择java,图中画框框的多注意一下
创建工程的名字 SSMProject01
下面看一下原始的项目结构,很明显和Eclipse创建的项目部太一样,这里我们需要进行设置。
下面我们在WEB-INF下创建lib和classes两个文件夹,lib里存放jar包,classes里存放编译的文件。
把ssm需要的Jar包存放到lib中
创建完两个文件夹后我们再进行配置,也就是告诉编辑器lib和classes存放的位置。点击快捷键Ctrl+Shift+Alt+S或者点击图中的快捷按钮
接下来操作见图:
在src下创建一个IndexController.java文件
在WEB-INF下创建一个jsp文件夹,然后把index.jsp文件剪切过去。
编辑web.xml文件
<?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_4_0.xsd" version="4.0"> <display-name>SSMProject01</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!-- 加载spring容器 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext*.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 解决post乱码 --> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- springmvc的前端控制器 --> <servlet> <servlet-name>SSMProject01</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- contextConfigLocation不是必须的, 如果不配置contextConfigLocation, springmvc的配置文件默认在:WEB-INF/servlet的name+"-servlet.xml" --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>SSMProject01</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
在src下创建一个applicationContext.xml文件
编辑applicationContext.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" 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.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"> <context:component-scan base-package="cn.tsu.xiaofeng" /> <mvc:annotation-driven /> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
编辑index.jsp文件
<%-- Created by IntelliJ IDEA. User: Administrator Date: 2019/2/5 0005 Time: 20:23 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>您好,欢迎来到IDEA</title> </head> <body> IDEA:您好${xiaofeng}; </body> </html>
下面开始配置Tomcat。
启动tomcat
在浏览器输入http://localhost:8080/SSMProject01/gethtml
ssm非maven工程搭建成功,若您在操作的过程中有任何疑问,欢迎留言!!
下一期给大家介绍IDEA搭建mavenSSM工程。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。