码迷,mamicode.com
首页 >  
搜索关键字:dependency injection    ( 4339个结果
SpringBoot整合kafka的简单应用
引入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka --> <dependency> <groupId>org.springframework.kafka</groupId> <art ...
分类:编程语言   时间:2021-06-02 14:22:43    阅读次数:0
Hystrix Dashboard使用
1.平台搭建 新建一个工程: cloud-consumer-hystrix-dashboard9001 pom必须引入actuator,所有需要被监控的服务都要引入actuator: <!-- netflix dashboard --> <dependency> <groupId>org.sprin ...
分类:其他好文   时间:2021-06-02 12:54:20    阅读次数:0
java读取excel
java读取excel 使用 jxl读取 依赖 <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.12</version> </dependency> ...
分类:编程语言   时间:2021-06-02 12:07:16    阅读次数:0
Overthewire-natas17
Overthewire level 17 to level 18 进入页面后,让我们去输入一个用户名看它是否存在。这与第15关很相似,但是不同的是这题关闭了回显。显然,关闭了回显后我们还是能有办法知道对应的sql语句到底执行成功还是失败,这有个技巧叫盲注(Blind injection),通过调用s ...
分类:其他好文   时间:2021-06-02 12:01:16    阅读次数:0
feign整合nacos
创建两个项目,服务提供者service-offer和服务消费者service-consumer 一、service-offer的pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot ...
分类:其他好文   时间:2021-06-02 11:44:54    阅读次数:0
SpringBoot--Druid多数据源配置
最近整理了一下spring boot关于对多数据源的配置,记录下来: 一, 引入Jar包: <dependency> <!-- MySql驱动 --> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </d ...
分类:编程语言   时间:2021-06-02 11:18:39    阅读次数:0
Swagger 使用+入门
Swagger 快速上手 1. Maven 依赖如下 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> <dependency> <groupId>io.springfox</groupId> <a ...
分类:其他好文   时间:2021-06-02 10:44:59    阅读次数:0
shiro的使用
知识: 英语单词 Authentication 认证 Authorization 授权 principal 首要的,本金,校长 shiro三大对象 Subject 用户 SecurityManager 管理用户 Reaim 连接用户 使用步骤 导入依赖 <dependency> <groupId>o ...
分类:其他好文   时间:2021-06-02 10:40:25    阅读次数:0
fastjson将java对象与json字符串相互转换
1、pom.xml文件添加依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.62</version> </dependency> 2、将对象转为json格式的字符 ...
分类:编程语言   时间:2021-05-25 17:44:13    阅读次数:0
Test类添加后 报错:程序包org.junit不存在解决
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <!-- 作用域范围为test --> <scope>test</scope> </dependency> 将<sc ...
分类:其他好文   时间:2021-05-24 17:22:10    阅读次数:0
4339条   上一页 1 ... 5 6 7 8 9 ... 434 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!