码迷,mamicode.com
首页 > Web开发 > 详细

MyEclipse2014新建Web Project并配置SSH

时间:2016-04-22 19:00:06      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

环境:

myeclipse2014

win10

jdk1.7

tomcat8


1、创建一个web项目,FileNewWeb Project,设置如下:

技术分享

技术分享

技术分享

finish项目新建完成

技术分享

2、添加spring,右击项目名称选择:MyEclipseProject Facts [Capabilities]Install Spring Facet,如下:

技术分享

技术分享

技术分享

技术分享

3、添加hibernate,首先需要创建数据库连接,然后再添加Hibernate。此处以mysql为例

首先打开Database Explorer视窗:

技术分享

新建连接

技术分享

技术分享

设置好后点击:Test Driver,测试成功显示:

技术分享

next

技术分享

新建成功,现在可以连接:

技术分享

技术分享

现在可以打开对应方案的表和视图等:

技术分享

添加Hibernate,右击项目名称选择:MyEclipseProject Facts [Capabilities]Install Hibernate Facet,如下:

技术分享

技术分享

技术分享

技术分享

4、添加struts,右击项目名称选择:MyEclipseProject Facts [Capabilities]Install Apache Struts(2.x) Facet,如下:

技术分享

技术分享

技术分享

SSH搭建完成:

技术分享

发布网站,测试成功:

技术分享






可能我们会用到自己下载的jar包,所以可以将下面几个jar包移除

技术分享


技术分享

在src创建hibernate.cfg.xml

内容如下

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

	<session-factory>
		<property name="dialect">
			org.hibernate.dialect.MySQLDialect
		</property>
		<property name="connection.url">
			jdbc:mysql://localhost:3306/sshtest
		</property>
		<property name="connection.username">root</property>
		<property name="connection.driver_class">
			com.mysql.jdbc.Driver
		</property>
		<property name="myeclipse.connection.profile">mysql</property>

	</session-factory>

</hibernate-configuration>


修改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"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">

<!--指明hibernate配置文件的位置  -->
<bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
   <property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
  
</beans>


这样修改后,部署运行,能够正常运行



MyEclipse2014新建Web Project并配置SSH

标签:

原文地址:http://blog.csdn.net/zk673820543/article/details/51218358

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!