美文网首页
使用IntelliJ开发Springboot项目(一)

使用IntelliJ开发Springboot项目(一)

作者: Charles_linzc | 来源:发表于2020-06-10 16:59 被阅读0次

准备是用Sprintboot做一个Demo 开发,这里记录一下需要的开发过程。

一.  使用浏览器打开 https://start.spring.io/ , 输入想创建的项目内容:

Java 语言, spring boot 2.2.5 , 

gourp=com.demo  Artifact=AuthService   

默认选 依赖: SpringWeb 、Spring data Redis , Mybatis Framework

点击Generate-Ctrl+[回车键]后会自动下载生成的项目压缩包。下载成功后,解压缩到想要保存的位置:

二.  使用intelliJ 社区版打开项目,是用File菜单下的Open... 代开刚刚保存的项目。

打开后如下图:

自动生成的项目,默认是使用Maven作为依赖管理。打开POM文件,可以看到我们选择的

三个依赖:

三    修改配置

       由于团队都是用Gradle在做依赖管理,现将Maven依赖管理替换为Gradle,在https://start.spring.io/ 页面,选择Gradle Project,重新下载项目并打开。

     首次打开是会下载和安装Gradle 插件, 等待安装完成后,展开项目,就可以看到gradle 格式的配置文件。

为了方便代码维护,我们准备将新项目上传到git repository管理. 登录gitlab(私有的git repository), 创建项目AuthSerice, 使用如下命令同步本地代码到远程代码仓库:

cd existing_folder

git  init

git remote add originhttp://scm.lifeccp.com:10080/Demo/AuthService.git

git add .

git commit -m "Initial commit"

git push -u origin master

代码同步完毕后,即可在远程仓库检查:

至此,项目的创建部分完毕。

相关文章

网友评论

      本文标题:使用IntelliJ开发Springboot项目(一)

      本文链接:https://www.haomeiwen.com/subject/utdtyhtx.html