加载中
jdk安装

下载jdk 安装jdk,我的安装路径:C:\Program Files (x86)\Java\jdk1.8.0_131 新建JAVA_HOME环境变量:C:\Program Files (x86)\Java\jdk1.8.0_131 PATH环境变量后添加:;%JAVA_HOME%\bin CLAS...

Oracle创建用户表空间授权命令

/ as sysdba; create user test_base identified by 123; create tablespace test_base datafile 'D:\oracle\test_base.dbf' size 200m; alter user test_base default tablespace test_base...

File的几个常用方法

File file = new File(String path); 只是创建文件对象 file.exists();文件是否存在 file.isDirectory();判断文件对象是否是文件夹 String[] list = file.list();返回文件列表,文件夹名字或...

redis常用命令

flushall:清理缓存里的所有内容。 set keyname "keyvalue":往缓存里添加内容。 del keyname:删除缓存里key为keyname的记录。 redis-cli.exe -h 192.168.10.11 -p 6379 :连接到远程的red...

面试

(1)自我介绍。 (2)JVM如何加载一个类的过程,双亲委派模型中有哪些方法? (3)HashMap如何实现的? (4)HashMap和Concurrent HashMap区别, Concurrent HashMap 线程安全吗, Concurre...

maven 打包

war包排除文件 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <attachClasses>true</attachClasses> <packagingExclu...

Bootstrap学习笔记

Table:table,table-bordered,table,table-hover,table-condensed, tr,td:active,success,warning,danger,info Form:form-group -> form-control, form-inline,form-horizontal, Button: <a...

Service Discovery with Spring Cloud Eureka

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency> @SpringBootApplication @EnableEurekaSer...

Spring Cloud Config Client

Spring Cloud Config Client <parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-parent</artifactId> <version>Angel.SR4</version> </parent...

Spring Cloud Config Server

Spring Cloud Config Server <parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-parent</artifactId> <version>Angel.SR4</version> </parent> <dep...

Shiro 默认过滤器

anon org.apache.shiro.web.filter.authc.AnonymousFilter authc org.apache.shiro.web.filter.authc.FormAuthenticationFilter authcBasic org.apache.shiro.web.filter.authc.BasicHttpAut...

关于异步消息

异步消息主要是为了系统与系统之间的通信,所谓异步消息即消息的发送者无须等待消息接收者的处理及返回,甚至无须关心消息是否发送成功。 异步消息有两个重要概念,消息代理和目的地。当消息...

没有更多内容

加载失败,请刷新页面

返回顶部
顶部