09 2020 档案
摘要:最近在看《阿里巴巴Android开发手册》,里面有这样几句话: 【强制】新建线程时,必须通过线程池提供(AsyncTask 或者ThreadPoolExecutor或者其他形式自定义的线程池),不允许在应用中自行显式创建线程。 【强制】线程池不允许使用Executors 去创建,而是通过Thread
阅读全文
Maven打包web项目报错:webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update)
摘要:问题描述 使用Maven打包项目的时候,出现错误:webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update) 原因分析 web项目下缺少WEB-INF/web.xml 当是在servlet
阅读全文
摘要:使用 tomcat7-maven-plugin,可以将tomcat内嵌到web项目中,直接运行webapp项目。 第一步、pom.xml的配置: <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifa
阅读全文