iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >使用bat启动springboot项目并解决乱码问题
  • 639
分享到

使用bat启动springboot项目并解决乱码问题

2024-04-02 19:04:59 639人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录1.SpringBoot项目打包jar2.编写bat启动springboot脚本3.bat启动springboot4.常见问题4.1.解决bat控制台中文乱码问题4.2.cd %

本文主要介绍了使用bat启动springboot项目并解决乱码问题,分享给大家,具体如下:

1.springboot项目打包jar

打包后,在如下目录:

这里打包的springboot的jar文件名为 api-0.0.1-SNAPSHOT.jar

2.编写bat启动springboot脚本

新建一个start.bat文件,start.bat文件的内容如下:

cd %~dp0
C:\jdk\jdk1.8.0_181\bin\java.exe -Dfile.encoding=utf-8 -jar api-0.0.1-SNAPSHOT.jar --server.port=81

cd %~dp0 表示切换到bat所在的目录下

-Dfile.encoding=utf-8 设置编码

--server.port=81 设置springboot访问端口为81

3.bat启动springboot

假设api-0.0.1-SNAPSHOT.jar和start.bat文件,都放在d:\apidemo目录下

双击start.bat文件,会自动弹出控制台,信息大致如下:

D:\apidemo>cd D:\apidemo\
 

D:\apidemo>C:\jdk\jdk1.8.0_181\bin\java.exe -Dfile.encoding=utf-8 -jar api-0.0.
1-SNAPSHOT.jar --server.port=81

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

2021-06-19 16:28:33.392  INFO 4436 --- [           main] com.demo.api.ApiApp
lication          : Starting ApiApplication v0.0.1-SNAPSHOT using Java 1.8.0_181
 on iZ23lkhhnpiZ with PID 4436 (D:\apidemo\api-0.0.1-SNAPSHOT.jar started by Ad
ministrator in D:\apidemo)
2021-06-19 16:28:33.392  INFO 4436 --- [           main] com.demo.api.ApiApp
lication          : No active profile set, falling back to default profiles: def
ault
2021-06-19 16:28:37.236  INFO 4436 --- [           main] o.s.b.w.embedded.Tomcat
.TomcatWEBServer  : Tomcat initialized with port(s): 81 (Http)
2021-06-19 16:28:37.298  INFO 4436 --- [           main] o.apache.catalina.core.
StandardService   : Starting service [Tomcat]
2021-06-19 16:28:37.298  INFO 4436 --- [           main] org.apache.catalina.cor
e.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.43]
2021-06-19 16:28:37.454  INFO 4436 --- [           main] o.a.c.c.C.[Tomcat].[loc
alhost].[/]       : Initializing Spring embedded WebApplicationContext
2021-06-19 16:28:37.470  INFO 4436 --- [           main] w.s.c.ServletWebServerA
pplicationContext : Root WebApplicationContext: initialization completed in 3891
 ms
2021-06-19 16:28:38.064  INFO 4436 --- [           main] o.s.s.concurrent.Thread
PoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2021-06-19 16:28:38.626  INFO 4436 --- [           main] o.s.b.w.embedded.tomcat
.TomcatWebServer  : Tomcat started on port(s): 81 (http) with context path ''
2021-06-19 16:28:38.642  INFO 4436 --- [           main] com.demo.api.ApiApp
lication          : Started ApiApplication in 6.504 seconds (JVM running for 7.7
85)

4.常见问题

4.1.解决bat控制台中文乱码问题

【现象】

【解决方法】

start.bat文件的编码设置为UTF-8,下面以Notepad++举例说明

【解决后效果】

4.2.cd %~dp0不是内部或外部命令

【现象】

D:\apidemo>锘縞d D:\apidemo\
'锘縞d' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

【解决方法】

start.bat中有其他符合,在Notepad++重新敲一下命令,或者切换一下编码。

【解决后的效果】

D:\apidemo>cd D:\apidemo\

到此这篇关于使用bat启动springboot项目并解决乱码问题的文章就介绍到这了,更多相关bat启动springboot项目内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: 使用bat启动springboot项目并解决乱码问题

本文链接: https://www.lsjlt.com/news/128674.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作