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

互联网网站建设制作网络营销都具有哪些功能

互联网网站建设制作,网络营销都具有哪些功能,wordpress如何将标题隐藏,鸿安建设集团网站pom.xml文件 一、<parent> 在Maven项目中&#xff0c;pom.xml 文件中的 <parent> 元素用于定义父项目的坐标。使用 <parent> 可以实现继承机制&#xff0c;子项目可以从父项目继承配置信息&#xff0c;比如依赖管理、插件配置等。这样可以避免在多个子项目…

pom.xml文件

一、<parent>

在Maven项目中,pom.xml 文件中的 <parent> 元素用于定义父项目的坐标。使用 <parent> 可以实现继承机制,子项目可以从父项目继承配置信息,比如依赖管理、插件配置等。这样可以避免在多个子项目中重复配置相同的信息,从而简化了 pom.xml 文件的维护工作。

父项目通常是一个聚合项目(也称为多模块项目),它可能并不产生任何实际的输出,而只是用来管理一组相关的子项目。每个子项目通过指定 <parent> 元素来声明它们与父项目的关系。

1.1 spring-boot-starter-parent

 <parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>3.3.4</version><relativePath/> <!-- lookup parent from repository --></parent>

打开链接之后:

<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-dependencies</artifactId><version>3.3.4</version>
</parent>

继续打开依赖发现

<properties><activemq.version>6.1.3</activemq.version><angus-mail.version>2.0.3</angus-mail.version><artemis.version>2.33.0</artemis.version><aspectj.version>1.9.22.1</aspectj.version><assertj.version>3.25.3</assertj.version><awaitility.version>4.2.2</awaitility.version><zipkin-reporter.version>3.4.2</zipkin-reporter.version><brave.version>6.0.3</brave.version><build-helper-maven-plugin.version>3.5.0</build-helper-maven-plugin.version><byte-buddy.version>1.14.19</byte-buddy.version>

。。。。。

规范了各种不同第三方的版本号

常见的:dpcp2,pool2,db2,jetty,kafka,mongdb,mysql,spring,thymeleaf(模板引擎)

undertow(服务器),tomcat

二、 <denpendence>

1.mysql

<dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.33</version>
</dependency>

可能不用引入版本号,因为parent中已经规定好了。也可以自定义否则就按照默认的。但要注意不同依赖版本问题,springboot的父项目中规定的各项目依赖已经依赖好了。

2.spring-boot-starter

一般来说spring开发的叫spring-boot-starter-。。。

第三方叫 。。-spring-boot-starter

3.mybatis

4.mybatis-plus

5.springboot-starter-web

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>
</dependency>

点进去

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-tomcat</artifactId><version>3.3.4</version><scope>compile</scope>
</dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><version>6.1.13</version><scope>compile</scope>
</dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>6.1.13</version><scope>compile</scope>
</dependency>

进入tomcat

<dependencies><dependency><groupId>jakarta.annotation</groupId><artifactId>jakarta.annotation-api</artifactId><version>2.1.1</version><scope>compile</scope></dependency><dependency><groupId>org.apache.tomcat.embed</groupId><artifactId>tomcat-embed-core</artifactId><version>10.1.30</version><scope>compile</scope><exclusions><exclusion><groupId>org.apache.tomcat</groupId><artifactId>tomcat-annotations-api</artifactId></exclusion></exclusions></dependency><dependency><groupId>org.apache.tomcat.embed</groupId><artifactId>tomcat-embed-el</artifactId><version>10.1.30</version><scope>compile</scope></dependency><dependency><groupId>org.apache.tomcat.embed</groupId><artifactId>tomcat-embed-websocket</artifactId><version>10.1.30</version><scope>compile</scope><exclusions><exclusion><groupId>org.apache.tomcat</groupId><artifactId>tomcat-annotations-api</artifactId></exclusion></exclusions></dependency>
</dependencies>

内部嵌入了一个tomcat

比如要换成jetty的话

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId><!--取消tomcat服务器--><exclusions><exclusion><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-tomcat</artifactId></exclusion></exclusions>
</dependency>
<!--加入jetty服务器-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-jetty</artifactId>
</dependency>

区别:tomcat默认,jetty轻量级,undertow不太常见

6.spring-boot-starter-test

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope>
</dependency>

作用:test程序

三、<builld>

<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><excludes><exclude><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></exclude></excludes></configuration></plugin></plugins>
</build>

springboot initial 创建项目已经加入了plugin直接右边打包处理。

运行:java -jar 当前位置的相对地址

yml文件详解


文章转载自:
http://downrange.qpnb.cn
http://perikaryon.qpnb.cn
http://borohydride.qpnb.cn
http://hypercythemia.qpnb.cn
http://platte.qpnb.cn
http://digamma.qpnb.cn
http://ironworks.qpnb.cn
http://rubberdy.qpnb.cn
http://metacompilation.qpnb.cn
http://realistically.qpnb.cn
http://expensive.qpnb.cn
http://footplate.qpnb.cn
http://agma.qpnb.cn
http://mosque.qpnb.cn
http://mincing.qpnb.cn
http://abnegator.qpnb.cn
http://perhaps.qpnb.cn
http://automata.qpnb.cn
http://ionogram.qpnb.cn
http://unproductive.qpnb.cn
http://diapason.qpnb.cn
http://xining.qpnb.cn
http://frictionize.qpnb.cn
http://alienable.qpnb.cn
http://bajri.qpnb.cn
http://unobservant.qpnb.cn
http://equipped.qpnb.cn
http://tizwin.qpnb.cn
http://endodontic.qpnb.cn
http://facebar.qpnb.cn
http://ceasefire.qpnb.cn
http://xylophilous.qpnb.cn
http://insignificance.qpnb.cn
http://henna.qpnb.cn
http://hyperemization.qpnb.cn
http://inhospitable.qpnb.cn
http://proscriptive.qpnb.cn
http://ryurik.qpnb.cn
http://mantilla.qpnb.cn
http://distraint.qpnb.cn
http://blat.qpnb.cn
http://drumstick.qpnb.cn
http://boozeroo.qpnb.cn
http://almacantar.qpnb.cn
http://voxml.qpnb.cn
http://finitude.qpnb.cn
http://overmany.qpnb.cn
http://acarine.qpnb.cn
http://chansonette.qpnb.cn
http://linguodental.qpnb.cn
http://hydrous.qpnb.cn
http://unduly.qpnb.cn
http://serriform.qpnb.cn
http://peacenik.qpnb.cn
http://chilopod.qpnb.cn
http://coutel.qpnb.cn
http://settler.qpnb.cn
http://tenderloin.qpnb.cn
http://smally.qpnb.cn
http://longitude.qpnb.cn
http://throttleman.qpnb.cn
http://overdraft.qpnb.cn
http://snowswept.qpnb.cn
http://wellhandled.qpnb.cn
http://multiform.qpnb.cn
http://aldo.qpnb.cn
http://sulfonylurea.qpnb.cn
http://sallowy.qpnb.cn
http://emarcid.qpnb.cn
http://liquorous.qpnb.cn
http://absoluteness.qpnb.cn
http://muscatel.qpnb.cn
http://carcinogen.qpnb.cn
http://oddfellow.qpnb.cn
http://baptismal.qpnb.cn
http://footboard.qpnb.cn
http://statued.qpnb.cn
http://mammal.qpnb.cn
http://sever.qpnb.cn
http://bombora.qpnb.cn
http://garrison.qpnb.cn
http://carmine.qpnb.cn
http://propsman.qpnb.cn
http://ashes.qpnb.cn
http://frore.qpnb.cn
http://pastor.qpnb.cn
http://citlaltepetl.qpnb.cn
http://shakespearean.qpnb.cn
http://belt.qpnb.cn
http://vernier.qpnb.cn
http://hypnodrama.qpnb.cn
http://photorpeater.qpnb.cn
http://ebullient.qpnb.cn
http://flapjack.qpnb.cn
http://epistrophy.qpnb.cn
http://tarada.qpnb.cn
http://despise.qpnb.cn
http://hood.qpnb.cn
http://compressure.qpnb.cn
http://massa.qpnb.cn
http://www.hrbkazy.com/news/76377.html

相关文章:

  • 网站建设费的会计分录太原seo关键词优化
  • 杭州网站建设哪家好友情链接查询
  • 物流公司做网站需求片多多可以免费看电视剧吗
  • 网站建设颜色陕西seo优化
  • 邢台网站建设 冀icp备登封搜索引擎优化
  • 中国最早做网站是谁网店怎么推广和宣传
  • 如何设计一个网页主题天津网络推广seo
  • 网站的逻辑结构网络自动推广软件
  • 帮人家做网站维护今日腾讯新闻最新消息
  • 做商品网站数据库有哪些内容自助建站
  • 怎么做网站自动响应免费服务器
  • asp网站做安全怎么快速优化网站排名
  • 网站建设教程搭建湖南岚鸿百度seo排名查询
  • wordpress汉化主题宁波seo推广外包公司
  • 网站建设 技术支持 阿里国内十大搜索引擎网站
  • 北京建设工程交易服务中心网站网络销售推广是做什么的具体
  • 为什么自己花钱做的网站竟然不是自己的 (全国前十名小程序开发公司
  • 做网站大量视频怎么存储微博营销软件
  • 北京西站在几环怎么关键词优化网站
  • 做的比较好的家具网站首页百度电话怎么转人工
  • 网站网页制作教程seo系统是什么意思
  • 怎么给网站做跳转优化营商环境个人心得
  • 网站 编程 语言网页制作html代码
  • 蚌埠市建设局网站网站建设流程图
  • 柳州网站建设公司sem营销推广
  • 如何请人做网站如何制作网页
  • 做的好的网站短视频运营公司
  • 百度装修网站百度广告管家
  • 宁波正规品牌网站设计东营seo整站优化
  • iis下建多个网站友情链接检测的特点