上一页 1 ··· 3 4 5 6 7
摘要: maven中的继承是在子类工程中加入父类的groupId,artifactId,version并用parent标签囊括 depenentManagement标签作用: 当父类的pom.xml中没有dependencyManagement标签时,子工程将继承父工程的所有依赖,有此标签则可自定义继承所需 阅读全文
posted @ 2019-11-26 17:24 递茶大户 阅读(376) 评论(0) 推荐(0) 编辑
摘要: maven POM.xml 标签详解 转载 自http://blog.csdn.net/sunzhenhua0608/article/details/32938533 pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则, 阅读全文
posted @ 2019-11-26 17:24 递茶大户 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 在web.xml中init-param需配置在load-on-startup前面否则会报错 <?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml 阅读全文
posted @ 2019-11-26 17:23 递茶大户 阅读(161) 评论(0) 推荐(0) 编辑
摘要: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P 阅读全文
posted @ 2019-11-26 17:23 递茶大户 阅读(592) 评论(0) 推荐(0) 编辑
摘要: jdbc.driverClassName=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://127.0.0.1:3306/数据库名?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMul 阅读全文
posted @ 2019-11-26 17:23 递茶大户 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 对官方提供的内核源码包进行解压缩,进入到内核目录,使用make menuconfig后,发现提示以下错误: *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuconfig' 阅读全文
posted @ 2019-11-26 17:22 递茶大户 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 1.使用./build编译boa-0.94.13时出现make:yacc:command not be found 解决方法:apt-get install -y byacc 2.出现make:lex:command not be found 解决方法:apt-get install flex 阅读全文
posted @ 2019-11-26 17:21 递茶大户 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 1.解压好u-boot后,打开uboot根目录的README文件,在software configuration 里有写明,如果要针对某个单板进行配置,需要执行:make <board_name>_config 其中uboot支持的board_name可以在根目录的include/configs/下 阅读全文
posted @ 2019-11-26 17:20 递茶大户 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 创建maven project时工程报错Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifa 阅读全文
posted @ 2017-12-29 10:13 递茶大户 阅读(21887) 评论(2) 推荐(0) 编辑
摘要: 这个问题困扰了我差不多两天时间了,明明已经安装了arm-linux-gcc,且系统变量和用户变量都配置好了 但每次输入arm-linux-gcc -v都会出现如题所示错误。最终经过查到一个帖子有说是因为使用的ubuntu是64位的原因, 需要在终端输入 sudo apt-get install ia 阅读全文
posted @ 2017-12-28 02:33 递茶大户 阅读(1711) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7