spring boot
角落遗失的眼泪
天地不仁,以万物为刍狗;红颜远,相思苦,几番意,难相负,十年情思百年渡,不斩相思不忍顾
展开
-
获取时间段内随机时间点
随机时间原创 2018-01-23 21:47:23 · 2694 阅读 · 0 评论 -
mybatis中返回对象包含其他对象情况
nothing to say原创 2022-08-11 11:20:05 · 1710 阅读 · 0 评论 -
利用hutool的poi模块需要引入poi-ooxml
笔记原创 2022-07-11 17:59:51 · 1371 阅读 · 0 评论 -
axios+springboot文件下载
笔记原创 2022-07-11 17:17:20 · 369 阅读 · 0 评论 -
读取自定义的yml文件
简单笔记,springboot yml原创 2022-07-11 15:52:52 · 295 阅读 · 0 评论 -
记一次事务失效原因
springboot事务原创 2022-06-17 17:38:23 · 265 阅读 · 0 评论 -
从sftp下载文件
sftp下载文件原创 2022-06-14 17:43:46 · 3146 阅读 · 0 评论 -
kafka认证和授权机制
https://blog.csdn.net/ZhongGuoZhiChuang/article/details/79550570转载 2022-02-18 15:49:44 · 289 阅读 · 0 评论 -
SpringBoot接入支付宝
支付宝推出了新的转账接口alipay.fund.trans.uni.transfer(升级后安全性更高,功能更加强大) ,老转账接口alipay.fund.trans.toaccount.transfer将不再维护,新老接口的一个区别就是新接口采用的证书验签方式。使用新接口要将sdk版本升级到最新版本,博主升级时最新版本是4.10.97。接下来看集成步骤。1.将支付宝开放平台里下载的3个证书放在resources下面2.写支付宝支付的配置文件alipay.properties.转载 2021-07-21 14:47:21 · 568 阅读 · 0 评论 -
spring boot转载
https://www.cnblogs.com/okong/p/springboot-hird.html转载 2018-12-26 11:17:19 · 133 阅读 · 0 评论 -
spring boot集成redis 以及redis的sub/pub命令
一、spring boot集成redis1、pom.xml文件<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schema...原创 2018-12-18 16:30:03 · 3213 阅读 · 0 评论 -
spring boot + cxf开发webservice
官方文档链接1、添加起步依赖<!-- Spring Boot CXF JAX-WS Starter --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-spring-boot-starter-jaxws</arti...原创 2018-12-18 14:47:10 · 4277 阅读 · 0 评论 -
spring boot(四)登录功能
1、添加login.html界面**界面路径放在templates目录下<!DOCTYPE html><html lang="en" xmlns: th = "http://www.thymeleaf.org"> <head> <title>login.html</title> <原创 2018-12-07 16:05:52 · 6374 阅读 · 1 评论 -
spring boot(五) 用户注册功能
用户注册功能(包含图片上传功能)1、编写controller控制器package org.chenhui.study.springbootstudy.controller;import java.util.Date;import org.chenhui.study.springbootstudy.entity.User;import org.chenhui.study.sp...原创 2018-12-14 11:57:58 · 605 阅读 · 0 评论 -
spring boot(三) thymeleaf模板引擎
1、添加起步依赖<!-- thymeleaf模块集成 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> &l...原创 2018-12-06 15:16:06 · 251 阅读 · 0 评论 -
spring boot(二) spring boot web开发
1、hello world package com.chenhui.springbootcrud.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.spring...原创 2018-12-06 14:31:23 · 219 阅读 · 0 评论 -
spring boot(一)spring boot+mybatis+mysql搭建ssm项目
1、构建项目 去spring官网构建spring boot项目 2、添加起步依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web<...原创 2018-12-05 14:49:59 · 834 阅读 · 0 评论