在MyEclipse建立项目(我的MyEclipse版本是8.6.1)。
1. 新建项目
2. 首先加入spring支持 一共6个选项
项目 右键-> MyEclipse -> Add Spring Capabilities
2. 加入hibernate支持共3个选项(Advanced Support Libraries)
a) Hibernate configuration 选择第二个 spring configuration file(applicationContext.xml)
b) 选择已经存在的spring configuration文件 ,下面是sessionFactory
c) 选择数据库连接。
d) 取消掉创建sessionFactory的类
3. 在applicationContext.xml 加入一下内容
<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.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="org.gjt.mm.mysql.Driver">
</property>
<property name="url" value="jdbc:mysql://localhost:3306/mydb"></property>
<property name="username" value="root"></property>
<property name="password" value="admin"></property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">
true
</prop>
<prop key="hibernate.format_sql">
true
</prop>
</props>
</property>
</bean>
<bean id="hibernateTemplete" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
</beans>
4. 加入struts支持 选择struts1.3
5. 修改strust-config.xml文件。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd"> <struts-config> <form-beans /> <global-exceptions /> <global-forwards /> <action-mappings /> <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor"></controller> <message-resources parameter="xx.xx.xx.struts.ApplicationResources" /> <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> <set-property value="/WEB-INF/classes/applicationContext.xml" property="contextConfigLocation" /> </plug-in> </struts-config>
6. 从数据库中生成pojo以及映射文件。
打开DB Browse (打开方式 window-> show view -> other..-> MyEclipse Database)
7. 将log4j.properties 拷贝到src下,加入数据库支持,我这里用的是mysql数据库 把 mysql-connector-java-5.0.4-bin.jar拷贝到lib目录下,然后启动测试。
8. 控制台没有报错说明配置正确。