-
使用IntelliJ IDEA 配置Maven(入门)
2016-05-20 13:56:271. 下载Maven 官方地址:...配置本地仓库路径 3.配置maven环境变量 4.在IntelliJ IDEA中配置maven 打开-File-Settings 5.新建maven WEB项目 打开-File-New-Project 点击NEXT1. 下载Maven
官方地址:http://maven.apache.org/download.cgi解压并新建一个本地仓库文件夹
2.配置本地仓库路径
3.配置maven环境变量
4.在IntelliJ IDEA中配置maven
打开-File-Settings5.新建maven WEB项目
打开-File-New-Project
点击NEXT
点击NEXT
添加的配置为 archetypeCatalog=internal
点击NEXT
点击NEXT
点击Finish后项目开始创建
点击右下角查看进去6.maven web模板项目结构
同样在main下新建test测试文件夹,再在此文件夹下新建java测试源码文件夹和resource测试资源文件夹
也可以右键项目-选择Open Module Settings打开项目配置页面更改7.配置依赖jar包
jar包配置搜索
官方地址:http://mvnrepository.com/其它推荐
Vue表单设计器 -
Maven的安装与配置
2019-09-04 19:48:17Maven超详细的安装与配置步骤一、安装本地Maven
tips: 官网为外网,下载速度较慢,这里提供3.6.3版本的三方链接下载Maven下载
-
无视下载速度以及需要其他版本的伙伴点此进入Maven官网下载
-
选择左侧Download
-
点击箭头所指的链接进行下载
-
下载完成后,选择一个路径进行解压
-
然后配置path环境变量,如图
- 系统变量:MAVEN_HOME = F:\dev\apache-maven-3.6.1
- 系统变量:path = %MAVEN_HOME%\bin
MAVEN_HOME:
path:
- 然后win+R 运行cmd 输入 mvn -version,如图所示则配置成功
二、配置settings文件
-
在F:\dev\apache-maven-3.6.1\conf下可以找到settings文件,打开(嫌麻烦的直接看最后一步)
-
找到第52行,这里是maven默认的仓库
-
我们复制第53行
<localRepository>/path/to/local/repo</localRepository>
将它拿到注释外并将中间的内容改成你需要的路径,如图
<localRepository>F:/repository</localRepository>
这里的路径随便设置,注意这里是正斜杠
- 因为国外的服务器下载jar包很慢所以我们改为阿里云服务器(大约在150行左右),这两个仓库只用选一个(根据大家反馈建议使用第一个,第二个在有的版本可能会出现warning)
<!-- 阿里云仓库 --> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> 或者 <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
-
如图,要夹在两个mirrors标签之间
-
在最后配置jdk,也要夹在两个profiles标签之间(我这里使用的为jdk8)
<!-- java版本 --> <profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile>
-
配置完成,在命令行输入mvn help:system测试,看到下载链接里面是ailiyun的链接表示配置成功
-
嫌麻烦的直接复制配置文件的内容即可,不过路径还是要改(参考第3步)
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- | This is the configuration file for Maven. It can be specified at two levels: | | 1. User Level. This settings.xml file provides configuration for a single user, | and is normally provided in ${user.home}/.m2/settings.xml. | | NOTE: This location can be overridden with the CLI option: | | -s /path/to/user/settings.xml | | 2. Global Level. This settings.xml file provides configuration for all Maven | users on a machine (assuming they're all using the same Maven | installation). It's normally provided in | ${maven.conf}/settings.xml. | | NOTE: This location can be overridden with the CLI option: | | -gs /path/to/global/settings.xml | | The sections in this sample file are intended to give you a running start at | getting the most out of your Maven installation. Where appropriate, the default | values (values used when the setting is not specified) are provided. | |--> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ${user.home}/.m2/repository <localRepository>/path/to/local/repo</localRepository> --> <localRepository>F:/repository</localRepository> <!-- interactiveMode | This will determine whether maven prompts you when it needs input. If set to false, | maven will use a sensible default value, perhaps based on some other setting, for | the parameter in question. | | Default: true <interactiveMode>true</interactiveMode> --> <!-- offline | Determines whether maven should attempt to connect to the network when executing a build. | This will have an effect on artifact downloads, artifact deployment, and others. | | Default: false <offline>false</offline> --> <!-- pluginGroups | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e. | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list. |--> <pluginGroups> <!-- pluginGroup | Specifies a further group identifier to use for plugin lookup. <pluginGroup>com.your.plugins</pluginGroup> --> </pluginGroups> <!-- proxies | This is a list of proxies which can be used on this machine to connect to the network. | Unless otherwise specified (by system property or command-line switch), the first proxy | specification in this list marked as active will be used. |--> <proxies> <!-- proxy | Specification for one proxy, to be used in connecting to the network. | <proxy> <id>optional</id> <active>true</active> <protocol>http</protocol> <username>proxyuser</username> <password>proxypass</password> <host>proxy.host.net</host> <port>80</port> <nonProxyHosts>local.net|some.host.com</nonProxyHosts> </proxy> --> </proxies> <!-- servers | This is a list of authentication profiles, keyed by the server-id used within the system. | Authentication profiles can be used whenever maven must make a connection to a remote server. |--> <servers> <!-- server | Specifies the authentication information to use when connecting to a particular server, identified by | a unique name within the system (referred to by the 'id' attribute below). | | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are | used together. | <server> <id>deploymentRepo</id> <username>repouser</username> <password>repopwd</password> </server> --> <!-- Another sample, using keys to authenticate. <server> <id>siteServer</id> <privateKey>/path/to/private/key</privateKey> <passphrase>optional; leave empty if not used.</passphrase> </server> --> </servers> <!-- mirrors | This is a list of mirrors to be used in downloading artifacts from remote repositories. | | It works like this: a POM may declare a repository to use in resolving certain artifacts. | However, this repository may have problems with heavy traffic at times, so people have mirrored | it to several places. | | That repository definition will have a unique id, so we can create a mirror reference for that | repository, to be used as an alternate download site. The mirror site will be the preferred | server for that repository. |--> <!-- mirror <mirrors> | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. | <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> </mirrors> --> <!-- 阿里云仓库 --> <mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror> </mirrors> <!-- profiles | This is a list of profiles which can be activated in a variety of ways, and which can modify | the build process. Profiles provided in the settings.xml are intended to provide local machine- | specific paths and repository locations which allow the build to work in the local environment. | | For example, if you have an integration testing plugin - like cactus - that needs to know where | your Tomcat instance is installed, you can provide a variable here such that the variable is | dereferenced during the build process to configure the cactus plugin. | | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles | section of this document (settings.xml) - will be discussed later. Another way essentially | relies on the detection of a system property, either matching a particular value for the property, | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'. | Finally, the list of active profiles can be specified directly from the command line. | | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact | repositories, plugin repositories, and free-form properties to be used as configuration | variables for plugins in the POM. | |--> <!-- profile <profiles> | Specifies a set of introductions to the build process, to be activated using one or more of the | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/> | or the command line, profiles have to have an ID that is unique. | | An encouraged best practice for profile identification is to use a consistent naming convention | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc. | This will make it more intuitive to understand what the set of introduced profiles is attempting | to accomplish, particularly when you only have a list of profile id's for debug. | | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo. <profile> <id>jdk-1.4</id> <activation> <jdk>1.4</jdk> </activation> <repositories> <repository> <id>jdk14</id> <name>Repository for JDK 1.4 builds</name> <url>http://www.myhost.com/maven/jdk14</url> <layout>default</layout> <snapshotPolicy>always</snapshotPolicy> </repository> </repositories> </profile> --> <!-- | Here is another profile, activated by the system property 'target-env' with a value of 'dev', | which provides a specific path to the Tomcat instance. To use this, your plugin configuration | might hypothetically look like: | | ... | <plugin> | <groupId>org.myco.myplugins</groupId> | <artifactId>myplugin</artifactId> | | <configuration> | <tomcatLocation>${tomcatPath}</tomcatLocation> | </configuration> | </plugin> | ... | | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to | anything, you could just leave off the <value/> inside the activation-property. | <profile> <id>env-dev</id> <activation> <property> <name>target-env</name> <value>dev</value> </property> </activation> <properties> <tomcatPath>/path/to/tomcat/instance</tomcatPath> </properties> </profile> --> <profiles> <profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile> </profiles> <!-- activeProfiles | List of profiles that are active for all builds. | <activeProfiles> <activeProfile>alwaysActiveProfile</activeProfile> <activeProfile>anotherAlwaysActiveProfile</activeProfile> </activeProfiles> --> </settings>
-
-
centos7配置国内yum源
2018-12-02 18:45:061、什么是yum仓库? yum仓库就是使用yum命令下载软件的镜像地址。 我们通常使用 yum install 命令来在线安装 linux系统的软件, 这种方式可以自动处理依赖性关系,并且...yum 的配置文件在 /etc/yum.repos.d 目录下...1、什么是yum仓库?
yum仓库就是使用yum命令下载软件的镜像地址。
我们通常使用
yum install
命令来在线安装 linux系统的软件, 这种方式可以自动处理依赖性关系,并且一次安装所有依赖的软件包。众所周知,从国外下载软件速度非常慢,很多情况下都无法下载。国内一些大公司做镜像同步国外的软件, 那么我们可能使用国内的下载地址,就能下载我们需要的软件。yum的配置文件
yum 的配置文件在/etc/yum.repos.d
目录下, 其中有多个配置文件,每一个配置文件中都可以配置一个或多个repository
, 但是最终会被合并为一个交给系统,所以多个文件只是为了方便管理。2、yum仓库配置
下面提供了 阿里 和 清华大学 两个镜像仓库配置操作说明,实际使用时,选择其中一个配置即可
2.1、配置 阿里镜像仓库
进入 阿里巴巴开源镜像站
点击centos
,进行配置说明页面,如下图所示:2.1.1、配置步骤
根据官网的说明,分别有 CentOS 6、CentOS 7、CentOS 8等配置操作步骤。
(1)、备份,将
CentOS-Base.repo
为CentOS-Base.repo.backup
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
(2)、下载新的
http://mirrors.aliyun.com/repo/Centos-7.repo
,并命名为CentOS-Base.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 或者 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
(3)、清除缓存
yum clean all # 清除系统所有的yum缓存 yum makecache # 生成yum缓存
2.2、配置 清华大学镜像仓库(推荐)
地址: https://mirrors.cnnic.cn/
点击
?
进入帮助说明页面 https://mirrors.cnnic.cn/help/centos/。页面提供了
CentOS5
,CentOS6
、CentOS7
的镜像仓库配置,下面列出的是CentOS7
的配置。(1)、首先备份 CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
(2)、之后启用 TUNA 软件仓库, 将
清华大学镜像仓库信息
写入/etc/yum.repos.d/CentOS-Base.repo
vim /etc/yum.repos.d/CentOS-Base.repo
将 CentOS-Base.repo 中的内容 更新为 下面的内容:
# CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/os/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 #released updates [updates] name=CentOS-$releasever - Updates baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/updates/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 #additional packages that may be useful [extras] name=CentOS-$releasever - Extras baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/extras/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/centosplus/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
(3)、清除缓存
yum clean all # 清除系统所有的yum缓存 yum makecache # 生成yum缓存
3、epel源 安装和配置
(1)、查看可用的epel源
[java@localhost yum.repos.d]$ yum list | grep epel-release epel-release.noarch 7-11 extras [java@localhost yum.repos.d]$
(2)、安装 epel
[java@localhost yum.repos.d]$ yum install -y epel-release ......省略.....
(3)、配置阿里镜像提供的epel源
wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
(4)、清除缓存
yum clean all # 清除系统所有的yum缓存 yum makecache # 生成yum缓存
3.1、查看yum源
查看所有的yum源:
yum repolist all
查看可用的yum源:
yum repolist enabled
-
PLSQLDeveloper安装与配置
2018-05-18 11:37:171,首先要有oracle数据库或者有oracle服务器,才可以实现使用PLSQL Developer 工具连接到oracle数据库进行开发.2,下载PLSQLDeveloper并解压3,配置环境变量1)变量名:ORACLE_HOME变量值:E:\tool_01\PLSQL Developer\...1,首先要有oracle数据库或者有oracle服务器,才可以实现使用PLSQL Developer 工具连接到oracle数据库进行开发.
链接:https://pan.baidu.com/s/1QtMPpv8XxZohdKvUgw1GRQ
提取码:lce62,下载PLSQLDeveloper并解压
3,
配置环境变量
1) 变量名:ORACLE_HOME 变量值:E:\tool_01\PLSQL Developer\instantclient_11_2
2) 变量名:TNS_ADMIN 变量值:E:\tool_01\PLSQL Developer\instantclient_11_2
3) 变量名:NLS_LANG 变量值:SIMPLIFIED CHINESE_CHINA.ZHS16GBK
4) 修改Path变量,在后面添加 E:\tool_01\PLSQL Developer\instantclient_11_2
注意:根据自己的路径相应更改1)2)和4)的变量值,我是直接解压在E盘下的,路径就是上述路径了。3)照抄即可
4,
配置oracle监听文件
找到E:\PLSQLDeveloper\PLSQL\instantclient_11_2路径下的tnsnames.ora文件,用编辑器打开(记事本也可以)。
根据自己实际需要进行编辑,如下图所示。ORCL_27是显示的数据库名,HOST后面填的是所要连接的地址。编辑好以后保存。
5,打开E:\PLSQLDeveloper\PLSQL\PLSQL Developer文件夹下的plsqldev.exe文件,右击,以管理员身份运行。
6,填入你要连接的数据库的用户名和密码,并在数据库一栏的下拉列表中选择你要连接的数据库。若在此步无法显示数据库名称,则进行下述步骤
7,
点击工具-》首选项,如下图所示。
Oracle主目录名
E:\tool_01\PLSQL Developer\instantclient_11_2
OCI库
E:\tool_01\PLSQL Developer\instantclient_11_2\oci.dll
重新启动就可以啦~
-
Linux系统下安装jdk及环境配置(两种方法)
2018-10-08 15:50:30这里介绍两种linux环境下jdk的安装以及环境配置方法 在windows系统安装jdk以及环境配置,相信大家都会,这里就不做赘述了,这里主要讲讲linux下的jdk安装以及环境配置。 第一种属于傻瓜式安装,一键安装即可(yum... -
intellij IDEA配置tomcat
2015-10-10 11:05:56intellij IDEA配置tomcat 如果网上流传的方法(即方法2)不能配置成功,点击加号什么都没有的话,请看方法一配置方法。 解决问题:intlellij IDEA配置tomcat点击加号没东西。 方法一:手动添加tomcat插件然后再... -
Windows配置Java环境变量(下载、安装、配置环境)
2018-10-31 17:40:45本人以博客专家担保,本篇文章可以解决你的问题,若未解决,将为你远程操作,但希望你为我点一个关注!!! ... (JavaSE) 目录 ...配置环境变量 下载、安装 进入官网下载https://www.oracle.com/... -
JDK 安装 Java环境变量配置 详细教程
2018-01-23 12:48:571、JDK jre-8u161-windows-x64.exe下载 所有平台:... 选择 “Accept License Agreement” 根据系统选择对应的安装文件,64位系统安装64位JDK ...... -
JDK的环境变量配置(步骤超级简单)
2019-05-09 11:14:39二、环境变量配置 1、右键桌面上“我的电脑”>>“属性”,在弹出的页面上点击“高级系统设置”。 2、在弹出的“系统属性”窗口中“高级”标签页下点击“环境变量”按钮。 3、在弹出的“环境变量”... -
Packet Tracer – 配置动态 NAT
2020-06-15 10:35:59第 1 部分:配置动态 NAT 第 2 部分:验证 NAT 实施 第 1 部分:配置动态 NAT 步骤 1: 配置允许的流量。 在 R2 上,为 ACL 1 配置一个语句以允许属于 172.16.0.0/16 的任何地址。 步骤 2: 配置 NAT 地址池。 ... -
Win10 IIS Web服务器安装与配置
2018-01-04 21:53:00这几天课程实训,使用 IIS 配置服务器,课本上内容太久,老师也没有讲过,自己摸索了一下,所以记录一下 安装 IIS 打开程序和功能,选择左边启用或关闭 Windows 功能,建议根据下图勾选,确定后等待安装完成 打开 ... -
Idea配置热部署
2019-08-17 16:23:13Idea配置热部署 一、概念 热部署就是正在运行状态的应用,修改了他的源码之后,在不重新启动的情况下能够自动把增量内容编译并部署到服务器上,使得修改立即生效。热部署为了解决的问题有两个, 一是在开发的时候... -
Ubuntu通过修改配置文件进行网络配置
2017-07-25 17:42:36buntu系统进行网络配置有的时候用图形界面不起作用,这种情况下可以直接修改某些启动脚本或配置文件 Ubuntu系统进行网络配置涉及到几个配置文件1./etc/network/interfaces 2./etc/resolv.conf 操纵步骤: 1.打开... -
SpringBoot配置-读取 .yml配置文件
2018-03-13 15:12:56之前会使用springboot,但基础知识掌握的不扎实,今天看了关于配置文件,下边稍作整理一下:大家都知道springboot的优点是配置文件少,相比springMVC少了很多的配置文件,下面就介绍一下springboot中的配置文件,... -
nginx学习,看这一篇就够了:下载、安装。使用:正向代理、反向代理、负载均衡。常用命令和配置文件,很全
2019-10-09 15:53:47动静分离二、Nginx 的安装三、 Nginx 的常用命令和配置文件四、 Nginx 配置实例 1 反向代理五、 Nginx 配置实例 2 负载均衡六、 Nginx 配置实例 3 动静分离七、 Nginx 的高可用集群 前言 一、nginx简介... -
Maven系列(一):安装、配置Settings.xml配置文件与使用
2019-05-28 19:30:15首先,Maven是基于项目对象模型(POM project object model),可以通过一小段描述信息(配置)来管理项目的构建,报告和文档的软件项目管理工具[百度百科] 这种又是大白话,如果没明白maven是什么,... -
Eclipse开发JavaWeb项目配置Tomcat,详细教程
2018-01-23 15:22:40以下都经过本人自学时一一自己动手配置实验。 首先介绍eclipse开发JavaWeb项目需要配置的相关环境,使用tomcat软件在本地搭建服务器,然后再在eclipse环境下配置tomcat: 第一步:使用tomcat软件在本地搭建服务器... -
Maven安装配置操作方法
2020-04-29 18:13:21Maven教程目录一、 Maven的安装下载1.1 安装Maven1.2 选择安装路径二、 Maven环境变量的配置2.1 配置环境变量2.2 测试环境变量是否配置成功三、 配置settings.xml四、 配置IDEA中Maven的相关参数 一、 Maven的安装... -
Tomcat安装及配置教程
2020-03-02 13:14:47步骤一:下载Tomcat ... 注意:要根据自己的JDK版本选择Tomcat的版本。 ...因本人java版本为10.0.2,故选择Tomcat9.0....步骤二:配置环境变量 新建系统环境变量: 修改系统Path(变量值末尾添加%CATALINA_HOME%\bin... -
MyEclipse+Tomcat配置详解
2017-01-02 21:30:30(尊重劳动成果,转载请注明出处:http://blog.csdn.NET/qq_25827845/article/details/53982209 冷血之心的博客) ...2 安装、启动、配置Tomcat 2.1 Tomcat目录结构 2.2 启动和关闭Tomca... -
在IDEA里gradle配置和使用
2018-06-13 19:32:23在IDEA里gradle配置和使用 在IDEA里gradle配置和使用 前言 Windows环境IDEA配置gradle 配置系统环境变量 下载 配置环境变量 测试 idea配置 gradle仓库设置 构建命令 创建缓存依赖 gradle.build构建脚本 ... -
logback配置日志按时间和总大小删除(配置文件详解)
2020-09-09 12:04:01logback配置详解 <configuration> <!-- 属性文件:在配置文件中找到对应的配置项 --> <springProperty scope="context" name="springAppName" source="spring.application.name"/> <!-- 全局... -
GitHub如何配置SSH Key
2018-10-29 09:35:07这两个地址展示的是同一个项目,但是这两个地址...前者是https url 直接有效网址打开,但是用户每次通过git提交的时候都要输入用户名和密码,有没有简单的一点的办法,一次配置,永久使用呢?当然,所以有了第二... -
maven配置多仓库镜像
2017-06-02 11:12:583、大部分jar包都可以在阿里镜像中找到,部分jar包在阿里镜像中没有,需要单独配置镜像 我想达到的目标: 在maven中配置一主一副两个镜像,大部分jar直接通过主镜像可以找到,部分特殊jar在主镜像中找不到时,自动... -
Packet Tracer –配置多区域OSPFv2
2020-06-01 11:10:399.2.2.6 Packet Tracer –配置多区域OSPFv2 拓扑结构 Packet Tracer –配置多区域OSPFv2图 地址表 设备 接口 IP 地址 子网掩码 OSPFv2 区域 ... -
hadoop集群搭建 修改配置文件(三台主机都要配置)
2019-08-25 17:42:39hadoop集群搭建 修改配置文件(三台主机都要配置) master 主机配置 1)hadoop-env.sh vimhadoop-env.sh 2)core-site.xml vim core-site.xml <configuration> <!-- 指定HDFS... -
plsql 连接oracle数据库详细配置
2016-06-22 18:25:17第一次用这种方式连接oracle数据库,自己百度搞了快两个小时才弄好,百度的资源也不靠谱,看了好多都不完整,搞完了报各种错误,各种连不上数据库,自己整理下资料,希望给其他的同行予以借鉴,不能保证每个人都能... -
VSCode配置Python开发环境
2018-08-10 01:16:07之前编写Python更多的是使用pycharm作为编译器进行开发,...在这里对vscode配置Python开发环境做一下记录。 步骤1:安装Python 安装Python的教程网上有很多。直接到官网下载安装就行。 下载链接:https://www.p... -
Spring Boot面试杀手锏————自动配置原理
2018-11-07 14:11:15引言 不论在工作中,亦或是求职面试...当然,作为Spring Boot的精髓,自动配置原理的工作过程往往只有在“面试”的时候才能用得上,但是如果在工作中你能够深入的理解Spring Boot的自动配置原理,将无往不利。 Spr... -
Maven(1) 安装与配置(配置本地仓库路径)
2018-11-11 11:31:03第一步:安装JDK并配置环境变量 (注意:全部配置到系统变量或者用户变量!!) cmd输入java -version验证是否安装 第二步:安装maven 进入官网下载 Maven:https://maven.apache.org/download.cgi 解压maven...
-
Spring--整合Mybatis及声明式事务
-
易语言开发通达信DLL公式接口
-
JVM(跟着b站学习的笔记)
-
【Codeforces 1475】Codeforces Round #697 (Div. 3) | 全题解
-
【数据分析-随到随学】SPSS调查问卷统计分析
-
水热法制备Mn掺杂ZnO及其光催化性能研究
-
雨雪天气条件下的运动目标检测
-
IPC-A-600J: Acceptability of Printed Boards-完整官方英文原版(189页)
-
反微机教室远程控制插件【电子教室远程杀手】
-
记录Azkaban使用中遇到的坑
-
MATLAB车票发票识别.zip
-
【数据分析-随到随学】互联网行业业务指标及行业数
-
转行做IT-第5章 流程控制语句
-
PHP实现爬虫
-
balenaEtcher-Setup-1.5.115.exe
-
ProBuilder快速原型开发技术
-
条纹投影法中抗噪声干扰的相移编码去包裹方法
-
商业的本质——杰克·韦尔奇著
-
面向智能电力的无线光技术研究与进展
-
Qt项目实战之基于Redis的网络聊天室