框架技术--S2SH框架整合(注解 No 1)

2024-05-25 13:32
文章标签 技术 整合 框架 注解 s2sh

本文主要是介绍框架技术--S2SH框架整合(注解 No 1),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

接着之前的一篇文章“框架技术--S2SH框架整合(使用myeclipse自动生成)”,这里我使用了注解搭建了下,和大家分享下。

目前只将spring、hibernate两层框架使用了注解的方式,struts2暂时还没替换,待后续我替换上,在整理文章与大家分享。

以下仅是这两天使用注解搭建框架的一些方式,以此记录,便于后续使用。


hibernate框架:

1、使用hierbernate框架,其中hibernate.cfg.xml和*.hbm.xml是之前我文章中的用法,hibernate.cfg.xml是hibernate的配置文件,*.hbm.xml是实体Bean中属性和数据库的对应关系配置。

2、使用了注解后,我们就不需要使用*.hbm.xml来配置实体Bean中属性和数据库了。可以通过注解实现这些功能。

代码如下:

package com.gp.bean;import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;/*** TUser entity.* * @author MyEclipse Persistence Tools*/
@Entity
@Table(name="t_user")
public class TUser implements java.io.Serializable {// Constructors/** default constructor */public TUser() {}/** full constructor */public TUser(String name, String password) {this.name = name;this.password = password;}@Id@GeneratedValue@Column(name = "id")private Long id;@Column(name = "name")private String name;@Column(name = "password")private String password;// Property accessorspublic Long getId() {return this.id;}public void setId(Long id) {this.id = id;}public String getName() {return this.name;}public void setName(String name) {this.name = name;}public String getPassword() {return this.password;}public void setPassword(String password) {this.password = password;}}

hibernate.cfg.xml配置如下:

这里我们将一些数据库连接的属性配置上,另外我们还要告诉hibernate需要映射的实体bean类路径,详见18行。

<?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="connection.url">jdbc:mysql://192.168.200.27:3306/liveEpg?useUnicode=true&characterEncoding=UTF-8</property><property name="connection.username">root</property><property name="connection.password">root</property><property name="connection.driver_class">com.mysql.jdbc.Driver</property><mapping class="com.gp.bean.TUser" /></session-factory></hibernate-configuration>

以上这些就是hibernate的注解配置,到此基本是完成了简单的配置,下面我们来修改spring。


spring框架

1、spring框架核心配置文件applicationContext.xml,之前我们需要进行一些注入的配置。

如图(可详见http://blog.csdn.net/gaopeng0071/article/details/9895845 ):


在使用了注解我们就不需要进行这么多的配置,下面分别记录下使用注解表示各个层的用法:

dao底层,访问数据库的,在代码中通过@Repository来代替上图xml中103-105行代码。

package com.gp.daoImpl;import java.util.ArrayList;
import java.util.List;import javax.annotation.Resource;import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.orm.hibernate3.HibernateTemplate;
import org.springframework.stereotype.Repository;import com.gp.dao.UserDao;@Repository("userDao")
public class UserDaoImpl implements UserDao {private HibernateTemplate hibernateTemplate;public HibernateTemplate getHibernateTemplate() {return hibernateTemplate;}@Resourcepublic void setHibernateTemplate(HibernateTemplate hibernateTemplate) {this.hibernateTemplate = hibernateTemplate;}public List findUser() throws Exception {// TODO Auto-generated method stubList list = new ArrayList();Session session = getHibernateTemplate().getSessionFactory().getCurrentSession();try {// HqlQuery query = session.createQuery("from TUser usg");list = query.list();} catch (HibernateException e) {e.printStackTrace();}return list;}}
service层,其中@Resource(name="userDao"),如上图xml中的102~105行代码。

package com.gp.serviceImpl;import java.util.List;import javax.annotation.Resource;import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;import com.gp.dao.UserDao;
import com.gp.service.UserService;@Service("userService")
public class UserServiceImpl implements UserService {private UserDao userDao;//添加事务处理,指明readOnly的话,Spring会对其有一定的优化public List findUser() throws Exception {// TODO Auto-generated method stubList list = userDao.findUser();return list;}public UserDao getUserDao() {return userDao;}@Resource(name="userDao")public void setUserDao(UserDao userDao) {this.userDao = userDao;}}
action层代码如下,@Resource(name="userService")如上图xml中的108~112行代码:

package com.gp.action;import java.util.List;import javax.annotation.Resource;import com.gp.bean.TUser;
import com.gp.service.UserService;
import com.opensymphony.xwork2.ActionSupport;public class UserAction extends ActionSupport {private UserService userService;private List<TUser> list;public String findUser() throws Exception {list = userService.findUser();return SUCCESS;}public UserService getUserService() {return userService;}@Resource(name="userService")public void setUserService(UserService userService) {this.userService = userService;}public List<TUser> getList() {return list;}public void setList(List<TUser> list) {this.list = list;}
}


在上面的service层与dao层分别使用了@Service("userService")和@Service("userService")两种用法,这样使用是根据不同层级不同的职责,使用不同的用法。

详见:http://www.cnblogs.com/chenzhao/archive/2012/02/25/2367978.html

applicationContext.xml源码如下:

这里的事物,我并没有采用注解的形式,扔是使用的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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"><!-- dataSource注入到sessionFactory --><bean id="sessionFactory"class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"><property name="configLocation" value="classpath:hibernate.cfg.xml"></property></bean><bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate"><property name="sessionFactory" ref="sessionFactory"></property></bean><context:component-scan base-package="com.gp"></context:component-scan><bean id="txManager"class="org.springframework.orm.hibernate3.HibernateTransactionManager"><property name="sessionFactory"><ref bean="sessionFactory" /></property></bean><tx:advice id="txAdvice" transaction-manager="txManager"><tx:attributes><tx:method name="query*" read-only="true" /><tx:method name="search*" read-only="true" /><tx:method name="find*" read-only="true" /><tx:method name="save*" /><tx:method name="update*" /><tx:method name="delete*" /></tx:attributes></tx:advice><aop:config><aop:pointcut expression="execution(* com.gp.service.*.*(..))"id="serviceMethod" /><aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod" /></aop:config>
</beans>






这篇关于框架技术--S2SH框架整合(注解 No 1)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1001645

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

一文详解如何从零构建Spring Boot Starter并实现整合

《一文详解如何从零构建SpringBootStarter并实现整合》SpringBoot是一个开源的Java基础框架,用于创建独立、生产级的基于Spring框架的应用程序,:本文主要介绍如何从... 目录一、Spring Boot Starter的核心价值二、Starter项目创建全流程2.1 项目初始化(

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

基于Flask框架添加多个AI模型的API并进行交互

《基于Flask框架添加多个AI模型的API并进行交互》:本文主要介绍如何基于Flask框架开发AI模型API管理系统,允许用户添加、删除不同AI模型的API密钥,感兴趣的可以了解下... 目录1. 概述2. 后端代码说明2.1 依赖库导入2.2 应用初始化2.3 API 存储字典2.4 路由函数2.5 应

Python GUI框架中的PyQt详解

《PythonGUI框架中的PyQt详解》PyQt是Python语言中最强大且广泛应用的GUI框架之一,基于Qt库的Python绑定实现,本文将深入解析PyQt的核心模块,并通过代码示例展示其应用场... 目录一、PyQt核心模块概览二、核心模块详解与示例1. QtCore - 核心基础模块2. QtWid

Spring Boot 整合 MyBatis 连接数据库及常见问题

《SpringBoot整合MyBatis连接数据库及常见问题》MyBatis是一个优秀的持久层框架,支持定制化SQL、存储过程以及高级映射,下面详细介绍如何在SpringBoot项目中整合My... 目录一、基本配置1. 添加依赖2. 配置数据库连接二、项目结构三、核心组件实现(示例)1. 实体类2. Ma