spring 疑问请教

问题描述

path.properties文件db.properties.path=file:config/db.propertiesftp.properties.path=file:config/FtpClientConfig.propertiesinterface.properties.path=file:config/interfaceRMI.propertiesaddress.properties.path=file:config/address.propertiesspring配置文件:<beanid="pathonfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><propertyname="order"value="1"/><propertyname="ignoreUnresolvablePlaceholders"value="true"/><propertyname="locations"><list><value>file:config/path.properties</value></list></property></bean><beanid="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><propertyname="order"value="2"/><propertyname="ignoreUnresolvablePlaceholders"value="true"/><propertyname="locations"><list><value>${db.properties.path}</value><value>${interface.properties.path}</value></list></property></bean>但是运行错误:Exceptioninthread"main"org.springframework.beans.factory.BeanInitializationException:Couldnotloadproperties;nestedexceptionisjava.io.FileNotFoundException:classpathresource[${db.properties.path}]cannotbeopenedbecauseitdoesnotexistatorg.springframework.beans.factory.config.PropertyResourceConfigurer.postProcessBeanFactory(PropertyResourceConfigurer.java:87)为啥第二个bean无法使用第一bean的资源属性值。盼高人解答。

解决方案

本帖最后由 jackychen_king 于 2014-10-15 16:56:10 编辑
解决方案二:
顶一下,问题着急啊,都好几天了。没有解决办法

时间: 2024-11-01 15:56:10

spring 疑问请教的相关文章

spring 疑问

问题描述 现在用的是SSI框架,但在开发中遇到一些疑惑,希望高手给予解答.因为是ssi的框架,项目在web.xml中定义了监听器,用于项目启动的时候就加载所有的bean<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:/config/spring/applicationContext.xml</param-value> &l

关于spring mvc,请教大虾们

问题描述 各位有没有在项目中用过springmvc的啊?功能怎么样?页面开发的时候方便吗?标签库强大吗?比如表单处理什么的,相比struts2,小弟想先学精一个,学哪个mvc框架好呢? 解决方案 解决方案二:学struts2的MVC比较好用的人多

【求助】was6.0集群访问的疑问,谢谢

问题描述 操作系统:suse10sp2WebSphere:6.0.27我新建一个集群,成员为:server1(在节点node1上,端口9081,这个server是在建立集群的时候添加进来的)server2(在节点node2上,端口9082,这个server是在建立集群之前就存在的)在集群上发布一个应用test,启动应用都正常,http://localhost:9082/test可以正常访问,http://localhost:9081/test无法访问,但node2上installedApps里面

c语言-C语言一个字符串的问题

问题描述 C语言一个字符串的问题 #include #include int main(){ char s1[81] s2[81]; scanf(""%s"" s1); scanf(""%s"" s2); char *find = NULL; int len2 = (int)strlen(s2); while ((find = strstr(s1 s2)) != NULL) { while ( *(find + len2) )

关于IHS的交易请求原理求助各位大神

问题描述 小弟初入职场,从事金融IT工作,由于天资愚钝,工作了快一年依然是朽木一块,有些疑问请教:对于网银类的B/S系统,采用IHS+WAS的方式搭建应用,客户通过浏览器将交易请求上送到IHS并通过Plugins转发给WAS,实现交易:但是对于POS类的系统,则是通过8583报文.xml报文的方式来处理交易请求,那么问题来了,在什么情况下会用到报文请求?类似网银这种系统,客户的请求也是通过报文的方式上送到IHS的吗?在下纯小白一个,还望诸君能不吝赐教,万分感谢. 解决方案

自来水水质正面临诸多挑战

自来水水质正面临诸多挑战.(资料照片) 北京城里"最会喝水的家庭"已经二十年不喝自来水了.丈夫在国家发改委公众营养与发展中心饮用水产业委员会工作,妻子是北京保护健康协会健康饮用水专业委员会负责人,如此一对与饮用水打交道二十余年的组合,谈起喝水来自然不必谦虚,"我们可能是北京最会喝水的家庭,没有人像我们这么讲究."58岁的妻子赵飞虹说. 戒掉自来水 1980年代,密云水库的水质达到一类标准,与地表水标准堪称世界最严的德国一类水标准相当."现在密云水库的水质已

想把Spring的AOP应用到项目中去,主要想记录用户的一些行为,有些疑问想请教一下,谢谢!

问题描述 1.项目中很多类都是用NEW的方式实例化的,这样的有没有办法把SPRING用起来? 比如经常是这样用的: ApplicationContext context = new ClassPathXmlApplicationContext("beans-config.xml"); MessageSender sender = (MessageSender)context.getBean("messageSender"); 上面是通过SPRING来获取实例的,有没

wck-C++初学者疑问多多,白痴问题多多想向大神们请教尽量讲清楚

问题描述 C++初学者疑问多多,白痴问题多多想向大神们请教尽量讲清楚 #include void main() { int digits =0,n; printf("请输入一个数:"); scanf("%d",&n); do{ n/=10; digits++; } while(n>0); printf("The number has %d digitsn",digits); }上面编程是计算一个数有几位数,我想问其中的digits+

spring-新手关于Spring管理Hibernate下查询性能的疑问

问题描述 新手关于Spring管理Hibernate下查询性能的疑问 我这么两段代码: 1.Query query = Dao.createQuery("from table"); list = query.list(); for(Table item : list){ Query query2 = Dao2.createQuery("select id from table2"); list = query2.list(); } 2.Query query = D