eclipse+tomcat8+springMVC环境搭建
第一步:
原料:apache-tomcat-8.0.36.zip
commons-logging-1.2-bin
log4j-1.2.17
spring-framework-4.0.0.RELEASE-dist
eclipse
这些文件可在我的资源里去自行下载
第二步 :添加tomcat服务器
直接解压tomcat8
打开安装好的eclipse–>Window–>Preferences—>Server—>Runtime Environment—>add—>Apache—>Apache Tomcat v8.0—>next —–>Browse—>选择你解压的tomcat8—>finish—–OK
第三步:创建Dynamic Web Project
打开安装好的eclipse—>file–>new—->project….—>Web——-Dynamic Web Project—->next—–>springtest(可以自己随便起)—->Target runtime—>Apache Tomcat v8.0–>next–>next–>勾选Generate Web.xml……–>finish
第四步:配置servers服务器
添加servers视图 :window–>show view —>other…–>Servers–OK
双击下面的Tomcat v8.0 Server
双击这个服务器,改两个地方,在Server Locations选项卡里选择第二个,可以把网站发布到tomcat的安装目录(其实就是我们解压的那个目录)中,下面的Deploy path 改为 webapps,这个在tomcat里面已经有了是tomcat默认的网站目录。最后记得点击保存。
第五步: 配置web.xml
打开工程—>WebContent–>WEB-INF—>web.xml
修改文件为:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>First</display-name>
<servlet>
<servlet-name>mvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/hello-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
第六步:
在web.xml边上再添加一个hello-servlet.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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<!-- 默认的注解映射的支持 -->
<mvc:annotation-driven />
<!--启用自动扫描 这里 -->
<context:component-scan base-package="com.lz.controller" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
注意这里面有个base-package,这个很重要,到时候建立控制器类时,要放到这个包里面。Tomcat会去这个包里面找控制器类,并加载它们。
到这一步,配置文件已经搞定了,接下来,要写代码,写代码之前,先把需要的库都加进来。
第七步,添加需要的库,右击工程,选择Build Path->Configure Build Path…
选择Libraries选项卡,点击Add External JARs…按钮,把之前解压的
spring-framework-4.0.0.RELEASE -> libs目录里的所有jar文件添加进来
commons-logging-1.2 -> commons-logging-1.2.jar添加进来
apache-log4j-1.2.17 –> log4j-1.2.17.jar添加进来 OK
选择工程,右键Properties–>Resource–>DeploymentAssembley–>add—>java Build Path Entries—>全选—finish。
第八步,写控制器代码,先在src目录下创建包,包名要和之前的hello-servlet.xml文件里的base-package里的包名一致。
在这个包里面创建一个类,然后把代码写完。
第九步,添加一个index.jsp页面,放到/WEB-INF/jsp/目录下,为什么要放到这个目录,是因为在前面的hello-servlet.xml里有配置啊。
index.jsp页面很简单:只是在body里面有一句话 :hello world
第十步:
运行项目
run as –>run on serve–finish
在地址栏自动补上aaa/bbb
至此,配置完成
上一篇: eclipse解决jsp页面乱码问题
下一篇: MySQL的binlog日志详解