上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页
摘要: 一、引入依赖 https://mvnrepository.com/ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <ve 阅读全文
posted @ 2021-04-13 22:41 残星 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 一、引入外部依赖 https://mvnrepository.com/ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> <versio 阅读全文
posted @ 2021-04-13 21:42 残星 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 一、引入外部依赖 https://mvnrepository.com/ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> <ve 阅读全文
posted @ 2021-04-13 20:54 残星 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 将A、B、C代码合并模块D,我们把它当做一个辅助构建模块,然后让A、B、C模块都依赖于D模块,这样的话就可以成功编译A、B和C模块 要想把A、B、C三个模块整合在一起编译,需要借助build-helper-maven-plugin插件,这个插件在Maven构建周期提供一些辅助功能,下面列出插件的提供 阅读全文
posted @ 2021-04-13 17:38 残星 阅读(7189) 评论(0) 推荐(0) 编辑
摘要: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>o 阅读全文
posted @ 2021-04-13 17:35 残星 阅读(2757) 评论(0) 推荐(0) 编辑
摘要: 添加-Dfile.encoding=GBK 阅读全文
posted @ 2021-04-13 17:33 残星 阅读(265) 评论(0) 推荐(0) 编辑
摘要: package com.example.query; import java.io.Serializable; public class UserQuery implements Serializable { private Integer id; private String username; 阅读全文
posted @ 2021-04-12 18:42 残星 阅读(47) 评论(0) 推荐(0) 编辑
摘要: HTTP状态码 当浏览者访问一个网页时,浏览者的浏览器会向网页所在服务器发出请求。当浏览器接收并显示网页前,此网页所在的服务器会返回一个包含HTTP状态码的信息头(server header)用以响应浏览器的请求。 HTTP状态码的英文为HTTP Status Code。 下面是常见的HTTP状态码 阅读全文
posted @ 2021-04-12 16:04 残星 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 一、引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <d 阅读全文
posted @ 2021-04-12 15:43 残星 阅读(353) 评论(0) 推荐(0) 编辑
摘要: https://mvnrepository.com/ pom.xml中加入: <build> <plugins> <plugin> <!-- <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugi 阅读全文
posted @ 2021-04-12 11:33 残星 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 一、File -> New -> Project 或 Close Project -> Create New Project 一开始创建父工程,所以不用选中create from archetype,点击next 父工程创建后,由于是父工程,所以建议删除其中的src文件,接下来创建子项目,鼠标移到项 阅读全文
posted @ 2021-04-11 20:00 残星 阅读(221) 评论(0) 推荐(0) 编辑
摘要: SpringBoot Maven install 报错 Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project demo 阅读全文
posted @ 2021-04-10 20:49 残星 阅读(961) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-09 18:34 残星 阅读(50) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u014411966/article/details/78164752 阅读全文
posted @ 2021-04-08 20:25 残星 阅读(181) 评论(0) 推荐(0) 编辑
摘要: package org.sang; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; 阅读全文
posted @ 2021-04-08 17:53 残星 阅读(830) 评论(0) 推荐(0) 编辑
摘要: package com.example.service; import com.example.pojo.User; public interface UserService { User getUserByUsername(String username); } package com.examp 阅读全文
posted @ 2021-04-05 18:03 残星 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 一、引入pom依赖 https://mvnrepository.com/ <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>3.0.0</version> 阅读全文
posted @ 2021-04-05 11:36 残星 阅读(197) 评论(0) 推荐(0) 编辑
摘要: package com.example.interceptor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import org. 阅读全文
posted @ 2021-04-05 10:49 残星 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Filter 过滤器 是Java EE 提供的只能处理 ServletRequest 和 ServletResponse 里的相关信息,不能处理与Spring相关的信息 package com.example.interceptor; import org.slf4j.Logger; import 阅读全文
posted @ 2021-04-05 09:50 残星 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 一、数据库表添加数据 二、代码 package com.example.pojo; import java.io.Serializable; import java.util.List; public class Menu implements Serializable { private Inte 阅读全文
posted @ 2021-04-04 23:04 残星 阅读(922) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页