
spring
java_doom
这个作者很懒,什么都没留下…
展开
-
Spring framework下载地址
http://maven.springframework.org/release/org/springframework/spring/http://repo.spring.io/webapp/search/artifact/?0&q=spring-framework官网上好像只能用maven下原创 2014-09-29 09:42:31 · 115 阅读 · 0 评论 -
Spring 3.1配置文件示例(备忘)
<?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:aop="http://www.springframe原创 2014-10-09 16:39:26 · 100 阅读 · 0 评论 -
Referenced file contains errors (http://www.springframework.org/schema/beans/sp
问题:Javaweb项目在myclipse中spirng配置文件 xml有小红叉Problems:Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd).解决:办法一:Eclipse 中选中项目点击 Progect –>clean 清理一下,删除缓存。...原创 2017-09-25 17:09:34 · 306 阅读 · 1 评论 -
InitializingBean和 @Scheduled好像不能同时用
写了一个类,让它的一个方法在启动时执行,另一个方法几分钟执行一次,继承了InitializingBea,用afterPropertiesSet()实现1,@Scheduled(cron="...实现二,然后就报错找不到方法。我猜是因为InitializingBean接口,spring直接给映射成InitializingBean的子类了,它的子类自然没有别的方法了,所以报错找不到。以上是我...原创 2018-07-26 11:02:02 · 400 阅读 · 0 评论