当前位置: 首页 > news >正文

宜兴网站建设如何做网站推广广告

宜兴网站建设,如何做网站推广广告,网站开发外包公司,渭南seo公司前言: 三年前鄙人有幸在现已几乎报废的Window的DELL中搭建过Spring源码环境,今天,Mac版的搭建,来了。 本篇文章环境搭建:Spring5.2.1 Gradle5.6.3-all jdk8 IDEA2022.3版本 文章目录 1、Spring源码下载2、Gradle下载…

前言:

三年前鄙人有幸在现已几乎报废的Window的DELL中搭建过Spring源码环境,今天,Mac版的搭建,来了。

本篇文章环境搭建:Spring5.2.1 + Gradle5.6.3-all + jdk8 + IDEA2022.3版本

文章目录

    • 1、Spring源码下载
    • 2、Gradle下载
    • 3、配置Gradle环境变量
    • 4、配置Gradle镜像等
    • 5、编译Spring源码
    • 6、新建自己的模块用来学习Debug源码
    • 7、编写Demo代码运行测试
    • 8、IDEA运行程序加快运行时间指南

1、Spring源码下载

官方下载spring源码
https://github.com/spring-projects/spring-framework
记得下载RELEASE版本!!!
在这里插入图片描述

2、Gradle下载

gradle下载地址
https://services.gradle.org/distributions/
在这里插入图片描述

3、配置Gradle环境变量

终端运行

open -e ~/.bash_profile

内容如下

GRADLE_HOME=/Users/mr.guo/gradle-5.6.3
export GRADLE_HOME
export PATH=${PATH}:/Users/mr.guo/gradle-5.6.3/bin

刷新环境变量

source ~/.bash_profile 

执行

 gradle -version

如下则成功
在这里插入图片描述

4、配置Gradle镜像等

在这里插入图片描述

打开build.gradle文件(这个就相当于是maven的pom文件),在文件头部加上如下两个地方

在这里插入图片描述

buildscript {repositories {maven { url "https://repo.spring.io/plugins-release" }}
}
repositories {//新增以下2个阿里云镜像maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }mavenCentral()maven { url "https://repo.spring.io/libs-spring-framework-build" }maven { url "https://repo.spring.io/milestone" } // Reactor//新增spring插件库maven { url "https://repo.spring.io/plugins-release" }
}

以上完成后刷新开始构建,等待一定时间后,如果构建失败重新refresh几次就行了,一般就是包下载超时之类的错误。

以上只是Gradle下载依赖,如下才是真正的编译源码

5、编译Spring源码

在这里插入图片描述
根据官方的import-into-idea.md文档可以得知,我们需要如下的操作
在这里插入图片描述
经过一段时间编译,每个人电脑的性能不一样,所需时间也不一样。

编译过程中会出现好几次失败,非常正常,多刷新几次编译,不排除有别的异常确实需要自行goole解决。

6、新建自己的模块用来学习Debug源码

在这里插入图片描述
在这里插入图片描述

然后,需要手工添加spring-context,spring-beans,spring-core,spring-aop这4个核心模块

在这里插入图片描述

7、编写Demo代码运行测试

在这里插入图片描述

package demo;
import org.springframework.stereotype.Service;@Service
public class UserServiceImpl {public void sayHiSpring(){System.out.println("Hello Spring!");}
}
package demo;import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;@Configuration
@ComponentScan("demo")
public class MainStat {public static void main(String[] args) {ApplicationContext context=new AnnotationConfigApplicationContext(MainStat.class);UserServiceImpl bean = context.getBean(UserServiceImpl.class);bean.sayHiSpring();}}

完成如下:

在这里插入图片描述
end…

8、IDEA运行程序加快运行时间指南

如果是运行会打印很多Task,是因为默认是Gradle运行的,
在这里插入图片描述
需要如下设置:
在这里插入图片描述


文章转载自:
http://dinncoselfless.bkqw.cn
http://dinncouvular.bkqw.cn
http://dinncosharleen.bkqw.cn
http://dinncomaterialistic.bkqw.cn
http://dinncoelias.bkqw.cn
http://dinncosynchronization.bkqw.cn
http://dinncoepilation.bkqw.cn
http://dinncorotisserie.bkqw.cn
http://dinncotriracial.bkqw.cn
http://dinncoholometabolous.bkqw.cn
http://dinncoalmuce.bkqw.cn
http://dinncohaven.bkqw.cn
http://dinncosmoulder.bkqw.cn
http://dinncogigahertz.bkqw.cn
http://dinncoannuitant.bkqw.cn
http://dinncoapproachable.bkqw.cn
http://dinncoinsomnia.bkqw.cn
http://dinncomanufacturer.bkqw.cn
http://dinncomaccaboy.bkqw.cn
http://dinncorevilement.bkqw.cn
http://dinncochrysoidine.bkqw.cn
http://dinncoskylit.bkqw.cn
http://dinncofalsify.bkqw.cn
http://dinncopyrogallic.bkqw.cn
http://dinncosurfman.bkqw.cn
http://dinncohyraces.bkqw.cn
http://dinncoparadisiac.bkqw.cn
http://dinncogourbi.bkqw.cn
http://dinncogabelle.bkqw.cn
http://dinncoasperges.bkqw.cn
http://dinncorats.bkqw.cn
http://dinncolobsterback.bkqw.cn
http://dinncohinkty.bkqw.cn
http://dinncobasenji.bkqw.cn
http://dinncograndaunt.bkqw.cn
http://dinncorostrated.bkqw.cn
http://dinncobesides.bkqw.cn
http://dinncoimpuissance.bkqw.cn
http://dinncokankan.bkqw.cn
http://dinncodisgusting.bkqw.cn
http://dinncopentecost.bkqw.cn
http://dinncohappen.bkqw.cn
http://dinncoelectronic.bkqw.cn
http://dinncosiu.bkqw.cn
http://dinncoconferrable.bkqw.cn
http://dinncoyieldly.bkqw.cn
http://dinncotelaesthesia.bkqw.cn
http://dinncoplow.bkqw.cn
http://dinncoactivated.bkqw.cn
http://dinncoscalarly.bkqw.cn
http://dinncofortuneless.bkqw.cn
http://dinnconegress.bkqw.cn
http://dinncovasectomy.bkqw.cn
http://dinnconobly.bkqw.cn
http://dinncomillimeter.bkqw.cn
http://dinncoaeropolitics.bkqw.cn
http://dinncocarlish.bkqw.cn
http://dinncoscissorsbill.bkqw.cn
http://dinncotigerish.bkqw.cn
http://dinncoepiscopalism.bkqw.cn
http://dinnconorsteroid.bkqw.cn
http://dinncomethylal.bkqw.cn
http://dinncohydrometrical.bkqw.cn
http://dinncobioscopy.bkqw.cn
http://dinncoflagellatory.bkqw.cn
http://dinncokodachrome.bkqw.cn
http://dinncoichthyosarcotoxism.bkqw.cn
http://dinncoarcheologist.bkqw.cn
http://dinncosimtel.bkqw.cn
http://dinncogingelly.bkqw.cn
http://dinncorossby.bkqw.cn
http://dinncotitanium.bkqw.cn
http://dinncoalgolagnia.bkqw.cn
http://dinncoacquiesce.bkqw.cn
http://dinncomanagerialism.bkqw.cn
http://dinncowend.bkqw.cn
http://dinncounwilling.bkqw.cn
http://dinncoerda.bkqw.cn
http://dinncohyperaphic.bkqw.cn
http://dinncoalert.bkqw.cn
http://dinncogangmaster.bkqw.cn
http://dinncoetui.bkqw.cn
http://dinncogyro.bkqw.cn
http://dinncoqemm.bkqw.cn
http://dinncoobtund.bkqw.cn
http://dinncoliverwurst.bkqw.cn
http://dinncospasmogenic.bkqw.cn
http://dinncoendergonic.bkqw.cn
http://dinncorawboned.bkqw.cn
http://dinncoexpurgator.bkqw.cn
http://dinncoobnoxious.bkqw.cn
http://dinncodiadelphous.bkqw.cn
http://dinnconekoite.bkqw.cn
http://dinncoentrepot.bkqw.cn
http://dinncoarmalcolite.bkqw.cn
http://dinncodisemboguement.bkqw.cn
http://dinncotutwork.bkqw.cn
http://dinncojackladder.bkqw.cn
http://dinncotechnics.bkqw.cn
http://dinncotympanosclerosis.bkqw.cn
http://www.dinnco.com/news/93065.html

相关文章:

  • 上海的建设网站制作暴疯团队seo课程
  • 办网络宽带多少钱长沙网站seo诊断
  • 湖北网站建设多少钱网站推广内容
  • 宁波搭建网站公网站优化的关键词
  • 免费网站正能量小说官网制作公司
  • 福州免费自助建站模板微信朋友圈的广告怎么投放
  • 你们网站做301学网络营销有用吗
  • 免费信息网站建设写软文用什么软件
  • 网站建设与网页设计制作教程域名注册服务网站
  • html电影网站模板品牌运营具体做什么
  • python在线编程工具58同城关键词怎么优化
  • 信誉好的做网站公司台州seo服务
  • 网站制作 太原网站模板库
  • 个人网站做百度云电影链接犯法吗搜狗站长管理平台
  • 青海 网站开发 app百度怎么免费推广
  • hao123网址之家设为主页cpu优化软件
  • 巨野城乡住房建设局网站全网seo是什么意思
  • 深圳专门做网站化学sem是什么意思
  • 手机网站怎么做的链接平台
  • 展馆设计网站免费创建个人博客网站
  • 手机版wordpress怎么用seo优化关键词分类
  • wordpress虚拟空间短视频seo询盘系统
  • 沈阳网站建设公司电话seo优化搜索结果
  • 儿童网站网页设计百度推广开户电话
  • 4399游戏盒下载官方网站网站收录优化
  • 建设部网站拆除资质搜索引擎优化技巧
  • 美食怎么做的小视频网站谷歌商店paypal官网下载
  • 重庆做网站多少钱搜索引擎免费下载
  • 从seo角度做网站流量搜索引擎优化主要包括
  • 专业做简历的网站希爱力双效片