springboot
赶紧去巡山
这个作者很懒,什么都没留下…
展开
-
springboot 打包成jar运行
下图 3 一定要是 resources下 否则结果都在运行时报了Error :Invalid or corrupt jarfile xxx.jar错误。最终 项目下会有 out 文件夹 jar包在里面进入jar目录cmd进入命令行运行 java -jar xxxx.jar 启动浏览器 http://localhost:port/路径就能访问了...原创 2021-05-31 15:35:11 · 146 阅读 · 0 评论 -
springboot 使用lettuce客户端操作redis
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency><!--redis需--><dependency> <groupId>org.apache.commons</gro.原创 2021-04-09 15:54:56 · 647 阅读 · 0 评论 -
springboot 参数里含英文括号 会有转义问题
加入参数 =HtmlUtils.htmlUnescape(参数.replace(" ",""));原创 2021-02-08 10:33:36 · 935 阅读 · 0 评论 -
Springboot跨域请求配置
有多种方式 暂写全局配置的一种加入配置package com.a.a.common.config;import org.springframework.boot.web.servlet.FilterRegistrationBean;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springfr原创 2020-12-08 13:15:32 · 1396 阅读 · 0 评论 -
springboot 多数据源
如果要连接两个数据源,首先需要设置主次数据源注意 下面的是 jdbc-urldatasource: wind: jdbc-url: jdbc:postgresql://11.112.118.100:18610/wind username: 111 password: 111 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: org.postgres...原创 2020-09-16 15:06:12 · 3545 阅读 · 0 评论