eclipse 配置 SSH 无配置文件 全注解

一、工具

eclipse 、JDK、Tomcat、Mysql、hibernate tools

二、工具使用

       首先要把eclipse升级为J2E,因为本来下载的是jse的,我比较喜欢在官网下载插件,然后将这些插件包放入eclipse的目录中进行升级的,这样容易管理。

       其他的都不用说,主要是配置全注解SSH框架。

三、配置

要添加hibernate-annotations.jar、hibernate-commons-annotations.jar、hibernate-entitymanager.jar
applicationContext.xml:
<span style="font-size:18px;"><!-- 使用 annotation -->
<context:annotation-config />
<!-- 使用 annotation 自动注册bean,并检查@Controller, @Service, @Repository注解已被注入 -->
<context:component-scan base-package="xxx.xxx" />
xxx:项目的报名
<!-- 包扫描的方式加载注解类(推荐) -->
<property name="packagesToScan">
<list>
<value>xxx.xxx.*</value>
</list>
</property>
<!-- 配置事务管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
<!-- 用注解来实现事务管理 -->
<tx:annotation-driven transaction-manager="transactionManager" /></span>


接下来就是连接到数据库,然后自动将bean文件配置出来。
自己写了一个basedao让beandao继承,这样可以减少代码,减少工作量。
接下来就是编码过程了。

创建一个Action
public class TestAction extends ActionSupport {
@Autowired
<span style="white-space:pre">	</span>private TestService testService;
@Action(value = "test", results = {
			@Result(name = "test1", location = "test1.jsp"),
			@Result(name = "test2", location = "test2.jsp")
			})
	public String getAllAuctionGoods(){
//TODO 
}
注意:不能有重复的action名称出现。


你可能感兴趣的:(eclipse,Hibernate,bean,框架,ssh)