- 浏览: 76478 次
最新评论
文章列表
一、写一个directive
module.directive('shopListView, function () {
return {
restrict: 'E',
templateUrl: "/xxx/shopListTemplate.html",
scope: {
shopList: '=',
showDetail : '&'
},
lin ...
在maven中,可以利用filter实现对资源文件(resouces)过滤
maven filter可利用指定的xxx.properties中对应的key=value对资源文件中的${key}进行替换,最终把你的资源文件中的username=${key}替换成username=value【需要配合resources一起使用】
filter是在maven的compile阶段执行过虑替换的,所以只要触发了编译动作即可【笔者使用idea,发现重新编译或者启动调试时,会在target下生成 工程名.war 的文件夹,应该是集成了maven的缘故,正常idea是不会懂得替换的】
工程目录:
在根目录 ...
Spring lets you define multiple contexts in a parent-child hierarchy.
The applicationContext.xml defines the beans for the "root webapp context", i.e. the context associated with the webapp.
The spring-servlet.xml (or whatever else you call it) defines the beans for one servlet's app cont ...