摘要: maven官网下载地址http://maven.apache.org/download.cgi 下载解压完maven之后配置环境 变量名:MAVEN_HOME 变量值:F:\maven\apache-maven-3.0.5 在cmd输入mvn -v 如果出现版本信息则表示安装配置成功 本地仓库存储配 阅读全文
posted @ 2019-11-26 17:25 递茶大户 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 1.如何下载及打开nexus nexus下载地址:http://www.sonatype.org/nexus/downloads/ 下载war包暂时还不清楚怎么操作的,但是有一位网友提供了一个版本的下载地址https://sonatype-download.global.ssl.fastly.net 阅读全文
posted @ 2019-11-26 17:25 递茶大户 阅读(306) 评论(0) 推荐(1) 编辑
摘要: 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) 编辑
摘要: 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) 编辑
摘要: <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) 编辑
摘要: 在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) 编辑
摘要: 对官方提供的内核源码包进行解压缩,进入到内核目录,使用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) 编辑