码迷,mamicode.com
首页 >  
搜索关键字:spring-boot    ( 7186个结果
【SpringBoot1.x】SpringBoot1.x 数据访问
SpringBoot1.x 数据访问 简介 对于数据访问层,无论是 SQL 还是 NOSQL,Spring Boot 默认采用整合 Spring Data 的方式进行统一处理,添加大量自动配置,屏蔽了很多设置。引入各种 xxxTemplate,xxxRepository 来简化我们对数据访问层的操作 ...
分类:编程语言   时间:2021-01-04 10:50:37    阅读次数:0
Spring boot + thymeleaf th:href带参跳转及接受
一、 前端(<a th:href="@{'/record_details/'+${record.id}}" target="_blank"></a>: <a th:href="@{'/record_details/'+${record.id}}" target="_blank"> <i><img t ...
分类:编程语言   时间:2021-01-04 10:36:42    阅读次数:0
Spring Boot 实战系列:01 Hello, World
概述 Overview 什么是Spring Boot? Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". 这是来自S ...
分类:编程语言   时间:2021-01-04 10:29:55    阅读次数:0
SpringSecurity之学习路途
Spring Security 学习之旅开端 SpringSecurity 开始 1. 引入依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifact ...
分类:编程语言   时间:2021-01-02 11:41:32    阅读次数:0
Spring Boot 分离打包
1、首先打出正常的jar包,解压后将lib上传到服务器2、修改pom,重新打包<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><
分类:编程语言   时间:2021-01-02 11:02:04    阅读次数:0
[Docker] Leverage a Docker Maven plugin
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>c ...
分类:其他好文   时间:2021-01-01 12:13:15    阅读次数:0
45个SpringBoot 注解,你都知道哪些?
一、注解(annotations)列表 1、@SpringBootApplication 包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。 其中@ComponentScan让Spring Boot扫描到Configuration ...
分类:编程语言   时间:2021-01-01 11:39:58    阅读次数:0
spring boot--Mongdb排序分页
improt.org.springframework.data.domain.sort包Criterialcritel=newCriterial();criterl.and("createTime").is(req.getCreateTime())Sortsort=Sort.by(sort.Diretion.DESC,mongod库对应属性)mongoTempalate.fin
分类:数据库   时间:2020-12-29 11:05:45    阅读次数:0
spring boot全局捕获异常
spring boot全局捕获异常 制作人:全心全意 @ExceptionHandler:标识拦截异常 @ControllerAdvice:Controller的一个辅助类,最常用的就是作为全局异常处理的切面类 @ControllerAdvice可以指定扫描范围 @ControllerAdvice约 ...
分类:编程语言   时间:2020-12-29 11:02:27    阅读次数:0
【转】SpringBoot之@EnableAutoConfiguration注解
首先Spring Boot项目中都会如下启动类: @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application. ...
分类:编程语言   时间:2020-12-28 11:58:46    阅读次数:0
7186条   上一页 1 ... 18 19 20 21 22 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!