日志工厂 如果一个数据库操作出现了异常,我们需要排错,所以说日志就是最好的助手 曾经:sout,debug 现在:日志工厂 在Mybatis中具体使用哪一个日志,在设置中设定 咋设定? 在mybatis-config.xml(mybatis核心配置文件)里面的<configuration>标签的里写 ...
分类:
其他好文 时间:
2020-02-23 18:22:50
阅读次数:
52
一、引入依赖 <dependencies> <!-- 核心启动器, 包括auto-configuration、logging and YAML --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sprin ...
分类:
编程语言 时间:
2020-02-23 18:11:10
阅读次数:
83
using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Text; using System.Collections.Generic; using M ...
分类:
数据库 时间:
2020-02-23 11:31:24
阅读次数:
76
Given an integer n, return all distinct solutions to the n-queens puzzle. Each solution contains a distinct board configuration of the n-queens' place ...
分类:
其他好文 时间:
2020-02-23 09:44:19
阅读次数:
57
Java实现对HDFS文件系统的基本操作 1.准备好jar包 2.创建一个类 1. 测试连接 @Test //测试是否连接成功 public void test() { //添加配置 == core site.xml Configuration conf = new Configuration(); ...
分类:
编程语言 时间:
2020-02-22 22:23:47
阅读次数:
97
注意:springboot不推荐使用jsp。 一、引入依赖 <!-- 核心启动器, 包括auto-configuration、logging and YAML --> <dependency> <groupId>org.springframework.boot</groupId> <artifact ...
分类:
编程语言 时间:
2020-02-22 22:22:06
阅读次数:
77
从Spring3.0,@Configuration用于定义配置类,可替换xml配置文件,被注解的类内部包含有一个或多个被@Bean注解的方法,这些方法将会被AnnotationConfigApplicationContext或AnnotationConfigWebApplicationContext ...
分类:
编程语言 时间:
2020-02-22 21:53:23
阅读次数:
71
官网文档:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-starter <!-- 核心启动器, 包括auto-configuration、logging an ...
分类:
编程语言 时间:
2020-02-22 13:55:48
阅读次数:
62
0x00:前言 DHCP(Dynamic Host Configuration Protocol),动态主机配置协议,是一个局域网的网络协议,使用UDP协议工作,常用的2个端口:67(DHCP server),68(DHCP client)。DHCP通常被用于局域网环境,主要作用是集中的管理、分配I ...
分类:
其他好文 时间:
2020-02-22 00:06:43
阅读次数:
82
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manif ...
分类:
编程语言 时间:
2020-02-20 22:13:21
阅读次数:
67