10.08-Idea的相关配置

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 21:00   2504   0

一、Idea导入新项目Maven路径发生改变的问题

983d114fa97358c645957f207fae6376139.jpg

1 --> 项目的设置

2 -->全局的设置

在 2 中的Default Setting中设置Maven,就可以避免导入新项目maven的路径发生改变的情况(当然1中部分设置也是全局的,这里主要针对maven的设置)

二、Idea的springboot项目热部署设置

2.1、 在pom.xml中加入依赖

<!--热部署-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
    <scope>runtime</scope>
</dependency>

<plugins>
    <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
            <fork>true</fork>
        </configuration>
    </plugin>
</plugins>

2.2、 系统设置

在File - Setting - Build,Execution,Deployment - Complier -Build project automatically 勾上

c8ae1c03700e47b2f64fba9cde27e3c4fd6.jpg

然后,Ctrl + Shift + Alt + / ,如下图:

bd1bd7dca5358fc7629fa3ce8b0d559d3ab.jpg

找到 compiler.automake.allow.when.app.running 勾上

3f53a01346ff01729a1bb11c8c257cccfbc.jpg

三、Idea上传项目到Gitee上

3.1、 在 https://gitee.com/ 上注册码云账户,安装Git , 完成以后,打开Git Bash

3.2、 生成连接GItee的SSH Key

(1) 输入注册时的邮箱,回车

ssh-keygen -t rsa -C "xxxxx@xxxxx.com"

(2) 然后一直回车,如下图即为成功

56aba93cb44eedb8ab8c89a429e6070896d.jpg

(3) 查看你的 public key,并把他添加到码云(Gitee.com) SSH key添加地址:https://gitee.com/profile/sshkeys)
cat ~/.ssh/id_rsa.pub

(4)添加后,在终端(Terminal)中输入 “ssh -T git@gitee.com”, 若返回 “Welcome to Gitee.com,yourname!”, 则证明添加成功 (注:有可能出现Warning的情况,也属于成功)

3.3、 设置基本信息

$ git config --global user.name "yourname"
$ git config --global user.email "youremail@youremail.com"

转载于:https://my.oschina.net/u/3678587/blog/3020659

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP