- 浏览: 952284 次
- 性别:
- 来自: 大连
文章分类
- 全部博客 (242)
- Flex (38)
- Java (15)
- iBatis (4)
- Spring (15)
- Oracle (4)
- Cognos (4)
- ActionScript (17)
- AIR (14)
- Box2D (1)
- Windows8 (3)
- AIR Mobile (4)
- Quartz (6)
- mybatis (7)
- CGLIB (1)
- Mobile (9)
- BlazeDS (3)
- IOS (8)
- FlashBuilder (1)
- Scout (1)
- Starling (5)
- APNS (3)
- Chrome (3)
- Windows (2)
- MySQL (15)
- Feathers (1)
- Tomcat (5)
- JavaPNS (1)
- SVN (2)
- XAMPP (1)
- Drupal (1)
- Linux (2)
- VSFTPD (1)
- jQuery (5)
- Discuz (2)
- Word (1)
- PHP (1)
- OFFICE (2)
- javascript (15)
- 微信 (1)
- 博客 (1)
- jquery mobile (5)
- nginx (1)
- memcached (1)
- maven (3)
- log4j (2)
- GitHub (2)
- html5 (3)
- WebSocket (2)
- Mac (11)
- Apache (1)
- JUnit (1)
- Eclipse (1)
- Openfire (1)
- HLS (1)
- Swift (6)
- Excel (2)
- IDE (4)
- NodeJS (8)
- 树莓 (3)
- CSS (2)
- PhoneGap (1)
- Angular.js (5)
- bootstrap (1)
- angular (5)
- React (1)
- Browserify (1)
- Ruby (1)
- WebService (1)
- CXF (1)
- redis (2)
- Dubbo (1)
- Jedis (1)
- solr (1)
- yeoman (1)
- grunt (1)
- bower (1)
- gulp (3)
- Git (2)
- angularJS (4)
- fastjson (1)
- Spring-Boot (1)
- Vue (1)
- Motan (1)
- Python (1)
最新评论
-
July01:
最近了解到一款StratoIO打印控件,功能如下:1、Html ...
NodeJS使用ipp协议打印 -
小“味”子:
不错不错,试了,是可以的
Mac下连接SQL Server客户端 -
akka_li:
我遇到这个问题了!我的原因是配置文件里写得各个包的xsd文件的 ...
Referenced file contains errors (http://www.springframework.org/schema...错误 -
迪伦少校:
我只想知道,你最后配置成功了吗?我这里怎么tomcat总是死呢 ...
关于 Nginx+Tomcat+Memcached做负载均衡加共享session -
LiYunpeng:
jun23100 写道我也遇到这个问题了,环境都是正确的,怎么 ...
关于HTML5请求WebSocket,404的问题
转自http://blog.sina.com.cn/s/blog_44a059590100q5kp.html
在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。虽然目前这 3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。
在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。 Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了 @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的
applicationContext.xml的配置文件:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"
default-default-lazy-init="true">
<!-- 使用annotation定义事务-->
<tx:annotation-driventransaction-manager="transactionManager" proxy-target-class="true"/>
<!--使用annotation 自动注册bean,并检查@Required,@Autowired的属性已被注入base-package为需要扫描的包(含所有子包)-->
<context:component-scanbase-package="com" />
</beans>
以上是spring XML最基本的配置
其中default- 这个不要忘了加,在项目中没有加这个的时候,老是报如下错误
Properties 'pageJdbcSupport' and 'sessionFactory' are required for bean 'productsDaoImpl'
这种错误又无法跟踪定位,到是排查了好了一会。
@Autowired
可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。
action控制层
@Controller("proc")
public class ProductsAction {
@Autowired
// @Qualifier("productsService")
private ProductsService productsService;
}
@Controller应用引用的proc就是struts.xml里面定义的namespace
ProductsService该类为业务层接口
业务层
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
private ProductsDao productsDao;
……
}
ProductsDao为持久层接口
@Repository
public class ProductsDaoImpl implementsProductsDao {
……
}
以上就是annotation在实际业务中的应用,再说明一下:
@Service用于标注业务层组件,
@Controller用于标注控制层组件(如struts中的action),
@Repository用于标注数据访问组件,即DAO组件,
@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
@Transactional声明这个service所有方法需要事务管理
@Resource
@Resource 的作用相当于 @Autowired,只不过
@Autowired 按 byType 自动注入,面 @Resource 默认按 byName
自动注入罢了。@Resource 有两个属性是比较重要的,分别是 name 和 type,Spring 将
@Resource 注释的 name 属性解析为 Bean 的名字,而 type 属性则解析为 Bean 的类型。所以如果使用
name 属性,则使用 byName 的自动注入策略,而使用 type 属性时则使用 byType 自动注入策略。如果既不指定 name 也不指定 type 属性,这时将通过反射机制使用 byName 自动注入策略。
Resource 注释类位于 Spring 发布包的 lib/j2ee/common-annotations.jar 类包中,因此在使用之前必须将其加入到项目的类库中。
@PostConstruct 和@PreDestroy
标注了 @PostConstruct 注释的方法将在类实例化后调用,而标注了 @PreDestroy 的方法将在类销毁之前调用。
@Qualifier
这里说一下@Qualifier("name")这个方法,这里的name为bean类名
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
@Qualifier("prodBuliderImpl")
private TreeBuilder<TabProducts> prodBulider;
……
}
TreeBuilder接口
public interface TreeBuilder<T> {
……
}
ProdBuliderImpl 类
@Component
public class ProdBuliderImpl implements TreeBuilder<TabProducts>{
……
}
在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。虽然目前这 3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。
在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。 Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了 @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的
applicationContext.xml的配置文件:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"
default-default-lazy-init="true">
<!-- 使用annotation定义事务-->
<tx:annotation-driventransaction-manager="transactionManager" proxy-target-class="true"/>
<!--使用annotation 自动注册bean,并检查@Required,@Autowired的属性已被注入base-package为需要扫描的包(含所有子包)-->
<context:component-scanbase-package="com" />
</beans>
以上是spring XML最基本的配置
其中default- 这个不要忘了加,在项目中没有加这个的时候,老是报如下错误
Properties 'pageJdbcSupport' and 'sessionFactory' are required for bean 'productsDaoImpl'
这种错误又无法跟踪定位,到是排查了好了一会。
@Autowired
可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。
action控制层
@Controller("proc")
public class ProductsAction {
@Autowired
// @Qualifier("productsService")
private ProductsService productsService;
}
@Controller应用引用的proc就是struts.xml里面定义的namespace
ProductsService该类为业务层接口
业务层
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
private ProductsDao productsDao;
……
}
ProductsDao为持久层接口
@Repository
public class ProductsDaoImpl implementsProductsDao {
……
}
以上就是annotation在实际业务中的应用,再说明一下:
@Service用于标注业务层组件,
@Controller用于标注控制层组件(如struts中的action),
@Repository用于标注数据访问组件,即DAO组件,
@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
@Transactional声明这个service所有方法需要事务管理
@Resource
@Resource 的作用相当于 @Autowired,只不过
@Autowired 按 byType 自动注入,面 @Resource 默认按 byName
自动注入罢了。@Resource 有两个属性是比较重要的,分别是 name 和 type,Spring 将
@Resource 注释的 name 属性解析为 Bean 的名字,而 type 属性则解析为 Bean 的类型。所以如果使用
name 属性,则使用 byName 的自动注入策略,而使用 type 属性时则使用 byType 自动注入策略。如果既不指定 name 也不指定 type 属性,这时将通过反射机制使用 byName 自动注入策略。
Resource 注释类位于 Spring 发布包的 lib/j2ee/common-annotations.jar 类包中,因此在使用之前必须将其加入到项目的类库中。
@PostConstruct 和@PreDestroy
标注了 @PostConstruct 注释的方法将在类实例化后调用,而标注了 @PreDestroy 的方法将在类销毁之前调用。
@Qualifier
这里说一下@Qualifier("name")这个方法,这里的name为bean类名
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
@Qualifier("prodBuliderImpl")
private TreeBuilder<TabProducts> prodBulider;
……
}
TreeBuilder接口
public interface TreeBuilder<T> {
……
}
ProdBuliderImpl 类
@Component
public class ProdBuliderImpl implements TreeBuilder<TabProducts>{
……
}
发表评论
-
SpringMVC中,捕捉Controller返回值进行拦截处理
2015-07-08 14:26 8801SpringMVC中,首先是Interce ... -
Spring 整合CXF提示未找到定义 cxf-extension-soap.xml的问题解决
2015-04-27 17:22 5674因为在网上找了些Demo来通过CXF配置WebService, ... -
springMVC多个xml配置文件时,导致事务不起作用的问题
2014-12-31 21:47 869在自己写的应用中,整个框架都可以正常运行,但是,事务管理却不好 ... -
SpringMVC中,异常处理返回JSON格式
2014-03-06 14:26 1734写一个类,实现HandlerExceptionResolver ... -
Referenced file contains errors (http://www.springframework.org/schema...错误
2013-12-17 10:32 18788Referenced file contains errors ... -
Quartz出现FactoryBean which is currently in creation returned null from getObject
2013-03-12 20:15 4014这个错误提示有些不解 但在我配置Spring+Quartz的 ... -
Quartz+Spring动态时间执行Job类实现的注入
2013-02-28 14:33 2514关于Spring + Quartz的实现,网上已经有很多了,这 ... -
Quartz创建Job无法注入接口实例的问题
2013-02-23 00:04 8367在使用Quartz的时候,遇到了一个问题困扰了好久 就是在执 ... -
Tomcat不影响启动时间 启动完成后执行一个操作的实现方法
2013-02-22 23:53 6651关于Tomcat启动后台服务时候,在不影响启动时间的情况下,启 ... -
随着Spring的启动,执行相关操作
2013-02-21 16:22 1279public class InitializedService ... -
使用Spring BlazeDS出现Error creating bean with name '_messageBroker': Invocation***
2013-01-19 22:03 10244我这里的情况其实是在写Junit的时候出现的这个错误,但是应该 ... -
Spring 3.x jar 包详解 与 依赖关系
2012-11-29 16:36 1437转载请注明:http://www.cnblogs.com/ic ... -
Spring+Quartz实现任务调度 定时执行
2012-11-28 11:20 1784直接入题 个人记录 环境是Spring 3.1 Quartz ... -
Spring 3.0 基本配置
2010-04-08 15:18 4762首先声明,俺是个新手,做Flex的 刚刚入手Spring3. ...
相关推荐
- **圆括号**:确保圆括号的正确使用,特别是在条件语句中。 - **返回值**:确保方法的返回值与其声明的类型一致。 - **条件运算符"?"**:使用条件运算符时,确保其左侧的表达式符合逻辑。 以上就是从给定的文件中...
标题中的“源代码统计工具挺好用的 喜欢的朋友们就试试”表明这是一个用于统计源代码相关数据的工具,可能包括代码行数、注释行数等。描述进一步揭示了该工具的功能,它能够分析VC(Visual C++)项目,提供关于代码...
- **其它惯例**:如圆括号的使用、返回值的检查、条件运算符的使用等,均需遵循统一的规范。 #### 11. 信息输出 适当的日志输出可以帮助定位问题,但过多的日志会降低程序的性能。 #### 12. 代码范例 最后,通过...
6. **后台与前端交互**:虽然标签中提及了“Java”,但这里可能指的是后台处理部分,例如使用Java服务器端技术(如Servlet、JSP或Spring MVC)来处理图片的上传、存储和获取,以及与Flash组件的通信。Java可能通过...
- **圆括号**:使用圆括号来增强表达式的清晰度。 - **返回值**:方法返回值应当有意义。 - **条件运算符“?”前的表达式**:确保条件运算符前面的表达式具有确定性。 #### 11. 信息输出 合理的日志记录可以帮助...
教程还提到了布局的改变,MATLAB提供了多种布局方式,如`plot(G, 'Layout', 'force')`(力导向布局)或`plot(G, 'Layout', 'spring')`(弹簧布局)。布局的选择可以根据图的结构和可视化需求进行调整。 此外,还...
单行注释使用`//`,多行注释使用`/* */`,这与CSS中的注释方式相同。 7. **运算符(Operators)**:SCSS支持数学运算,如加减乘除,可以用于计算尺寸、颜色等。例如,`width: 100px + 20px;`。 8. **选择器继承...
- **圆括号 ()**:用于函数调用和数学运算的优先级控制。例如,`f(a+b)` 表示先执行括号内的操作,再调用函数 f。 - **方括号 []**:用于访问数组元素,如 `arr[i]` 表示获取数组 arr 的第 i 个元素。 - **大括号...
Java绘制图片火焰效果 1个目标文件 摘要:Java源码,图形操作,火焰效果 Java绘制图片火焰效果,源代码相关注释:前景和背景Image对象、Applet和绘制火焰的效果的Image对象、Applet和绘制火焰的效果的Graphics对象、...