Spring boot
aliaichidantong
这个作者很懒,什么都没留下…
展开
-
spring boot 在Linux上部署
一、使用install打包二、上传到Linux服务器三、执行命令# 后台不中断运行# 参数 & 会把输入日志打印到nohup文件中,有log4j就不要这个了nohup java -jar fortress-1.0.0-SNAPSHOT.jar &四、定义启动、关闭脚本#!/bin/bash#这里可替换为你自己的执行程序,其他代码无需更改APP_NAME=hc-video-0.0.1-SNAPSHOT.jar#使用说明,用来提示输入参数usage(){原创 2021-04-18 16:44:25 · 108 阅读 · 0 评论 -
自己写的jar包加入本地仓库
一、有时候自己写的jar包要加入到maven仓库,但是这个jar包又不能公开二、通过命令加入到本地仓库,这样在pom中就可以直接使用了mvn install:install-file -DgroupId=com.fort.http -DartifactId=https-url-common -Dversion=0.0.1 -Dpackaging=jar -Dfile=G:\\https-url-common-0.0.1.jar####### 命令中的groupId这些都是和下面对应的 #原创 2020-06-08 17:54:56 · 356 阅读 · 0 评论 -
Springboot使用插件pagehelper进行分页查询
一、配置pom<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.2</version></dependency>...原创 2020-02-27 01:27:52 · 935 阅读 · 0 评论 -
SpringBoot遇到的一些问题
一、 找不到bean,提示required a bean of type 'xxx' that could not be found.错误信息如下Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.******...原创 2020-02-27 00:31:16 · 185 阅读 · 0 评论 -
Spring boot 一
一、下载Apache Maven官网:http://maven.apache.org/download.cgi我这边下载的是:apache-maven-3.6.0-bin.zip下载后解压,在目录下创建maven_dependcies文件夹 添加系统变量编辑path:添加 %MAVEN_HOME%\bin;验证配置 编辑mavne的配置文件server.xm...原创 2018-12-27 15:18:55 · 137 阅读 · 0 评论 -
maven在线搜索jar组件坐标
一、访问阿里仓库服务坐标http://maven.aliyun.com/mvn/search搜索关键字点击文件名,右下角会出现maven依赖复制即可原创 2018-12-27 19:34:17 · 1485 阅读 · 0 评论 -
解决Eclipse 每Maven Update 后JRE System Library 就变1.6和project facets
今天在eclipse上对一个Spring boot 项目的代码修改了一下,最后部署的时候,总是提示我-Source 1.6 不支持switch中包含字符,刚看见的时候以为自己的jdk和编译环境设置不对,检查了一下发现时1.8没错,但就是编译不过去。网上查了好多资料,最好发现按照网上的方法进行Update的时候,发现jre就自动变成1.6了,手动修改成1.8也没用。网上说是因为maven 更...原创 2018-12-29 17:33:44 · 1323 阅读 · 0 评论