spring 加载XML文件
java读取文件帮助类:
import org.springframework.context.ApplicationContext;import com.ecd.boss.domain.CopyCategoryImagesService;import com.ecd.boss.utils.ApplicationConxtXML;public class CopyCategoryImagesTsk {public static void main(String... args) {ApplicationContext cxt = ApplicationConxtXML.getApplicationConxtXMLPropertise();CopyCategoryImagesService copyCategoryImagesService = (CopyCategoryImagesService) cxt.getBean("copyCategoryImagesService");int areal[] = {1,4};copyCategoryImagesService.copyImages(areal);}}