
maven
liangzelei
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nexus搭建maven私服及私服jar包上传和下载
一、nexus搭建maven私服及相关介绍1、下载nexus-2.12.0-01-bundle.zip(版本随意)2、以管理员身份运行cmd,cd进入解压文件的bin目录,执行nexus.bat install若未以管理员身份运行则安装不了,因为权限不够3、开启nexus服务,访问nexus服务器地址:http://localhost:8081/nexus/,默认登录账户为admin,默认密码为a...转载 2018-06-02 13:30:11 · 321 阅读 · 0 评论 -
Storm常用API
API简介Component组件1)基本接口 (1)IComponent接口 (2)ISpout接口 (3)IRichSpout接口 (4)IStateSpout接口 (5)IRichStateSpout接口 (6)IBolt接口 (7)IRichBolt接口 (8)IBasicBolt接口2)基本抽象...原创 2018-06-24 19:58:02 · 2800 阅读 · 0 评论 -
Maven 项目之间的关系
1. 依赖关系 1.1 标签<dependency>把另一个项目的 jar 引入到当过前项目 1.2 自动下载另一个项目所依赖的其他项目 2. 继承关系. 2.1 父项目是 pom 类型 2.2 子项目jar或war,如果子项目还是其他项目的父项目,子项目也是 pom 类型. 2.3 有继承关系后,子项目中出现<parent>标签 2.3.1 如果子项目和<grou...原创 2019-01-17 22:15:24 · 778 阅读 · 0 评论 -
Maven部署SSM的POM配置内容
<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/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0...原创 2019-01-18 11:28:09 · 312 阅读 · 0 评论 -
资源拷贝插件
1.maven 默认只把 src/main/resources 里面的非.java 文件进行编译到classes 中 2.如果希望 src/main/java 下的文件也被编辑到 classes 中,在 pom.xml中配置 2.1 下面内容配置在<build>中 <resources> <resource> <directory...原创 2019-01-18 11:47:40 · 605 阅读 · 0 评论 -
maven 热部署
1. 修改 tomat/conf/tomcat-users.xml 添加 <role rolename="manager-gui"/> <role rolename="manager-script"/> <user username="tomcat" password="tomcat" roles="manager-gui,manage原创 2019-01-18 11:50:14 · 475 阅读 · 0 评论 -
maven配置setting
需要配置的主要有三项: 1.jdk版本 2.maven镜像地址 3.设置本地库路径 <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. ...原创 2019-01-16 22:41:04 · 613 阅读 · 0 评论