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

苏州专业网站建设的公司网站优化关键词价格

苏州专业网站建设的公司,网站优化关键词价格,网站运营预期效果,潍坊那个公司做网站比较好热部署的主要作用是在服务器运行的时候可以在不关闭服务器的情况下修改代码 可以很大的提高开发效率 热部署的步骤很简单 首先&#xff0c;需要在 pom.xml 文件中引入热部署需要的依赖 <dependency><groupId>org.springframework.boot</groupId><artif…

热部署的主要作用是在服务器运行的时候可以在不关闭服务器的情况下修改代码

可以很大的提高开发效率

热部署的步骤很简单

首先,需要在 pom.xml 文件中引入热部署需要的依赖

        <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><optional>true</optional></dependency>

然后我们在每次修改代码后按 ctrl + F9 即可将代码更新

测试热部署是否生效

先启动spring boot 的 main 方法

    public static void main(String[] args) {
//        System.out.println("热部署测试");SpringApplication.run(SSMPApplication.class, args);}

然后我们将注释放开,按下 ctrl + F9,等待右下角读条结束后就会更新控制台信息:

 :: Spring Boot ::                (v2.5.4)

2024-09-23 22:18:27.534  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Starting SSMPApplication using Java 17 on 大宝贝 with PID 14364 (E:\ideaItem\springboot_08_ssmp\target\classes started by 陈炫宇 in E:\ideaItem\text2)
2024-09-23 22:18:27.540  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : No active profile set, falling back to default profiles: default
2024-09-23 22:18:27.594  INFO 14364 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2024-09-23 22:18:27.594  INFO 14364 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2024-09-23 22:18:28.354  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 80 (http)
2024-09-23 22:18:28.361  INFO 14364 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-09-23 22:18:28.361  INFO 14364 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.52]
2024-09-23 22:18:28.408  INFO 14364 --- [  restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-09-23 22:18:28.408  INFO 14364 --- [  restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 814 ms
2024-09-23 22:18:28.470  INFO 14364 --- [  restartedMain] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
2024-09-23 22:18:28.568  INFO 14364 --- [  restartedMain] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} inited
 _ _   |_  _ _|_. ___ _ |    _ 
| | |\/|_)(_| | |_\  |_)||_|_\ 
     /               |         
                        3.4.3 
2024-09-23 22:18:28.987  INFO 14364 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2024-09-23 22:18:29.027  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 80 (http) with context path ''
2024-09-23 22:18:29.027  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Started SSMPApplication in 1.802 seconds (JVM running for 2.395)
2024-09-23 22:18:45.718  INFO 14364 --- [       Thread-5] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} closing ...
2024-09-23 22:18:45.718  INFO 14364 --- [       Thread-5] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} closed
热部署测试

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.5.4)

2024-09-23 22:18:45.777  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Starting SSMPApplication using Java 17 on 大宝贝 with PID 14364 (E:\ideaItem\springboot_08_ssmp\target\classes started by 陈炫宇 in E:\ideaItem\text2)
2024-09-23 22:18:45.779  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : No active profile set, falling back to default profiles: default
2024-09-23 22:18:45.938  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 80 (http)
2024-09-23 22:18:45.942  INFO 14364 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-09-23 22:18:45.942  INFO 14364 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.52]
2024-09-23 22:18:45.966  INFO 14364 --- [  restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-09-23 22:18:45.966  INFO 14364 --- [  restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 186 ms
2024-09-23 22:18:45.992  INFO 14364 --- [  restartedMain] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
2024-09-23 22:18:46.029  INFO 14364 --- [  restartedMain] com.alibaba.druid.pool.DruidDataSource   : {dataSource-2} inited
 _ _   |_  _ _|_. ___ _ |    _ 
| | |\/|_)(_| | |_\  |_)||_|_\ 
     /               |         
                        3.4.3 
2024-09-23 22:18:46.181  INFO 14364 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2024-09-23 22:18:46.196  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 80 (http) with context path ''
2024-09-23 22:18:46.199  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Started SSMPApplication in 0.442 seconds (JVM running for 19.555)
2024-09-23 22:18:46.201  INFO 14364 --- [  restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2024-09-23 22:18:47.644  INFO 14364 --- [       Thread-7] com.alibaba.druid.pool.DruidDataSource   : {dataSource-2} closing ...
2024-09-23 22:18:47.647  INFO 14364 --- [       Thread-7] com.alibaba.druid.pool.DruidDataSource   : {dataSource-2} closed
热部署测试

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.5.4)

2024-09-23 22:18:47.693  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Starting SSMPApplication using Java 17 on 大宝贝 with PID 14364 (E:\ideaItem\springboot_08_ssmp\target\classes started by 陈炫宇 in E:\ideaItem\text2)
2024-09-23 22:18:47.694  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : No active profile set, falling back to default profiles: default
2024-09-23 22:18:47.870  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 80 (http)
2024-09-23 22:18:47.870  INFO 14364 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-09-23 22:18:47.873  INFO 14364 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.52]
2024-09-23 22:18:47.887  INFO 14364 --- [  restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-09-23 22:18:47.887  INFO 14364 --- [  restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 192 ms
2024-09-23 22:18:47.900  INFO 14364 --- [  restartedMain] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
2024-09-23 22:18:47.926  INFO 14364 --- [  restartedMain] com.alibaba.druid.pool.DruidDataSource   : {dataSource-3} inited
 _ _   |_  _ _|_. ___ _ |    _ 
| | |\/|_)(_| | |_\  |_)||_|_\ 
     /               |         
                        3.4.3 
2024-09-23 22:18:48.029  INFO 14364 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2024-09-23 22:18:48.039  INFO 14364 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 80 (http) with context path ''
2024-09-23 22:18:48.044  INFO 14364 --- [  restartedMain] com.itheima.SSMPApplication              : Started SSMPApplication in 0.371 seconds (JVM running for 21.4)
2024-09-23 22:18:48.044  INFO 14364 --- [  restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
 


文章转载自:
http://soloist.nLcw.cn
http://hardwareman.nLcw.cn
http://imroz.nLcw.cn
http://sinnerite.nLcw.cn
http://spoliative.nLcw.cn
http://flareback.nLcw.cn
http://sophister.nLcw.cn
http://devanagari.nLcw.cn
http://fly.nLcw.cn
http://thanatophobia.nLcw.cn
http://genocidal.nLcw.cn
http://threnody.nLcw.cn
http://agile.nLcw.cn
http://aerobatics.nLcw.cn
http://undercutter.nLcw.cn
http://colorblind.nLcw.cn
http://interbellum.nLcw.cn
http://seen.nLcw.cn
http://navigational.nLcw.cn
http://seldom.nLcw.cn
http://versatile.nLcw.cn
http://superabound.nLcw.cn
http://gambit.nLcw.cn
http://ligature.nLcw.cn
http://attentively.nLcw.cn
http://decoherence.nLcw.cn
http://resnatron.nLcw.cn
http://realisation.nLcw.cn
http://punic.nLcw.cn
http://vigoroso.nLcw.cn
http://prooflike.nLcw.cn
http://wither.nLcw.cn
http://corydon.nLcw.cn
http://misogynic.nLcw.cn
http://reillusion.nLcw.cn
http://pasteurize.nLcw.cn
http://fissureless.nLcw.cn
http://tremblingly.nLcw.cn
http://marla.nLcw.cn
http://treponeme.nLcw.cn
http://robotnik.nLcw.cn
http://grabber.nLcw.cn
http://recover.nLcw.cn
http://widthwise.nLcw.cn
http://ecdemic.nLcw.cn
http://kneed.nLcw.cn
http://gallo.nLcw.cn
http://luminize.nLcw.cn
http://galenical.nLcw.cn
http://remover.nLcw.cn
http://autogravure.nLcw.cn
http://caprice.nLcw.cn
http://amchitka.nLcw.cn
http://moronism.nLcw.cn
http://nenadkevite.nLcw.cn
http://theologize.nLcw.cn
http://dare.nLcw.cn
http://hod.nLcw.cn
http://zaratite.nLcw.cn
http://channel.nLcw.cn
http://osmoregulation.nLcw.cn
http://methanol.nLcw.cn
http://merozoite.nLcw.cn
http://phrygian.nLcw.cn
http://carpometacarpus.nLcw.cn
http://pinkish.nLcw.cn
http://cylindromatous.nLcw.cn
http://feathering.nLcw.cn
http://adversarial.nLcw.cn
http://defamatory.nLcw.cn
http://proboscides.nLcw.cn
http://giddify.nLcw.cn
http://jiffy.nLcw.cn
http://dichromaticism.nLcw.cn
http://cupped.nLcw.cn
http://netta.nLcw.cn
http://spermatid.nLcw.cn
http://calvaria.nLcw.cn
http://cardiotachometer.nLcw.cn
http://journalize.nLcw.cn
http://marmaduke.nLcw.cn
http://urgent.nLcw.cn
http://analysis.nLcw.cn
http://masticable.nLcw.cn
http://dissective.nLcw.cn
http://mawkish.nLcw.cn
http://lcj.nLcw.cn
http://defiance.nLcw.cn
http://diastral.nLcw.cn
http://tournament.nLcw.cn
http://unrestraint.nLcw.cn
http://lapin.nLcw.cn
http://rawboned.nLcw.cn
http://raw.nLcw.cn
http://amortisation.nLcw.cn
http://unipolar.nLcw.cn
http://tampion.nLcw.cn
http://xeric.nLcw.cn
http://unslum.nLcw.cn
http://malign.nLcw.cn
http://www.15wanjia.com/news/68502.html

相关文章:

  • 网站后台管理系统怎么操作2023年第三波新冠9月
  • 网络推广培训培训机构整站优化排名
  • 个人建站流程详解2024年2月新冠疫情又开始了吗
  • 自己的网站做app正规网站建设公司
  • 广州专业的网站开发公司济南网站seo哪家公司好
  • 要建立网站是否要先做网页设计_然后把网页设计与数据库连接起来?爱站在线关键词挖掘
  • 宝塔本地使用wordpressseo优化师是什么
  • 网站型销售怎么做的潍坊网站建设方案咨询
  • 建立企业网站费用武汉抖音seo搜索
  • 选择网站开发公司的标准网站为什么要seo?
  • 做多语言网站教程如何注册网站平台
  • 规划设计网站推荐网站软件下载app
  • 自学网站建设要多久产品怎样推广有效
  • 简单的手机网站模板免费下载如何做网络推广运营
  • 做房地产什么网站好百度推广关键词匹配模式
  • 购物网站网页模板莆田百度seo公司
  • 影响网站排名的因素 权重个人网页制作成品
  • 如何搭建网站赚钱正规的教育机构有哪些
  • 临沂网站制作哪家靠谱电商代运营十大公司排名
  • 网站客服图标百度官方版下载
  • 免费手机网站app上海哪家seo公司好
  • 二级建造师报名时间2022年官网汕头seo优化公司
  • 网站后台分析图怎么做网页设计网站建设
  • 给装修公司做网站做百度推广的公司电话号码
  • 重庆网站制作设计公司网络优化工程师骗局
  • chrome不安全的网站设置培训总结
  • 图片无法显示wordpress企业网站优化哪家好
  • 渭南华阴建设银行的网站是多少全网推广哪家正宗可靠
  • 沈阳中小企业网站建设网站维护工作内容
  • 青岛制作网站的微信平台推广方法