随笔分类 -  SpringBoot

摘要:一、在resources目录下创建文件 generatorConfig.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Ge 阅读全文
posted @ 2021-04-14 12:56 残星 阅读(184) 评论(0) 推荐(0) 编辑
摘要:一、引入依赖 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 残星 阅读(117) 评论(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 残星 阅读(7214) 评论(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 残星 阅读(2759) 评论(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) 编辑
摘要:一、引入依赖 <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 残星 阅读(223) 评论(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) 编辑
摘要:package org.sang; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; 阅读全文
posted @ 2021-04-08 17:53 残星 阅读(831) 评论(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 残星 阅读(265) 评论(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 残星 阅读(200) 评论(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 残星 阅读(924) 评论(0) 推荐(0) 编辑
摘要:一、创建数据库表 DROP TABLE IF EXISTS `vhr`.`user`; CREATE TABLE `vhr`.`user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(45) NOT NULL 阅读全文
posted @ 2021-04-04 16:34 残星 阅读(729) 评论(0) 推荐(0) 编辑
摘要:一、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <version>2.4.4</version> </depen 阅读全文
posted @ 2021-04-04 11:13 残星 阅读(253) 评论(0) 推荐(0) 编辑
摘要:一、https://code.angularjs.org/ 下载 Angularjs 二、添加依赖 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3 阅读全文
posted @ 2021-04-03 10:42 残星 阅读(1123) 评论(0) 推荐(0) 编辑