Spring
文章平均质量分 74
sustbeckham
java
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 38 in XML document from class path resource [applic
<br />Exception in thread "main" org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 38 in XML document from class path resource [applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException: The string "--"原创 2010-07-16 14:02:00 · 3146 阅读 · 0 评论 -
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/
<br /> <br /> <br /> <br />org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/applicationContext.xml]; nested exception is java.io.FileNotFoundException: Could not open Se原创 2010-07-19 11:17:00 · 5367 阅读 · 2 评论 -
Spring AOP注解报错:warning no match for this type name: ICalculate [Xlint:invalidAbsoluteTypeName]
这个错误的原因在我这里是我的横切类是/* Font definitions */html { font-family: 'Tahoma',sans-serif; font-size: 9pt; font-style: normal; font-weight: normal; }body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt { font-size:1em; }pre原创 2010-08-17 20:03:00 · 7512 阅读 · 2 评论 -
使用spring向servlet中注入
<br />package abu.csdn.servlet; import java.io.IOException; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import java原创 2010-10-10 18:19:00 · 4120 阅读 · 2 评论 -
spring的事务传播理解
<br />基本的六种事务传播:<br />1. PROPAGATION_REQUIRED: 如果存在一个事务,则支持当前事务。如果没有事务则开启<br />2. PROPAGATION_SUPPORTS: 如果存在一个事务,支持当前事务。如果没有事务,则非事务的执行<br />3. PROPAGATION_MANDATORY: 如果已经存在一个事务,支持当前事务。如果没有一个活动的事务,则抛出异常。<br />4. PROPAGATION_REQUIRES_NEW: 总是开启一个新转载 2010-12-23 20:51:00 · 706 阅读 · 0 评论 -
关于系统中使用多个PropertyPlaceholderConfigurer的配置
原文地址:http://wjl198408.blog.163.com/blog/static/2540214720105724845630/Spring中PropertyPlaceholderConfigurer这个类,它是用来解析Java Properties属性文件值,并提供在spring配置期间替换使用属性值。接下来让我们逐渐的深入其配置。基本的使用方法是:(1)classpath:/spring/include/dbQuery.properties转载 2011-01-15 16:03:00 · 1607 阅读 · 0 评论 -
spring事务的一些理解
<br />这个哥们写的挺不错的。赞一下。<br />http://blog.youkuaiyun.com/java_min/archive/2009/08/09/4427523.aspx原创 2011-04-12 19:45:00 · 271 阅读 · 0 评论
分享