mac中ping-docker容器

    阅读全文
fightinggg's avatar
fightinggg 4月 18, 2020

Zookeeper

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial Zookeeper介绍Zookeeper是一个为分布式应用提供一致性服务的软件,是Hadoop项目的一个子项目,是分布式应用程序协调服务 Zookeeper安装这里有一个下载地址,也可以brew install zookeeper安装还可以docker pull zookeeper安装     阅读全文
fightinggg's avatar
fightinggg 4月 17, 2020

美团笔试

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial 2020/4/16美团笔试 不多说,美团的题真的出的好,尽管我没有做完,但是体验挺好的。 # 第一题 n个人,每个人m个科目,只要一个人某科是最高分或者最高分之一,我们就要为他颁奖,每个人最多颁奖一次,问最需要多少次颁奖 统计最值就ok了 # 第二题 输入a,b,x,m, 你讲进行不断的迭代x = (a*x+b)%m, 问x的循环节是多少, m<1e5 暴力枚举2*m轮,枚举的时候     阅读全文
fightinggg's avatar
fightinggg 4月 16, 2020

SpringBoot4-Web2-模版引擎

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial 模版引擎常见的模版引擎有JSP,Velocity,Freemarker,Thymeleaf SpringBoot推荐的Thymeleaf12345<!-- 模版引擎--><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency> 视频中说这个版本有点低,是2.16的然鹅我用的SpringBoot2,已经是3.x了修改版本号,这招估计学了有用,这个能覆盖版本     阅读全文
fightinggg's avatar
fightinggg 4月 16, 2020

SpringBoot4-Web1-静态资源

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial SpringBoot与Web先在idea中选择场景SpringBoot已经默认将这些常见配置好了,我们只需要在配置文件中指定少量配置就可以运行起来然后我们可以开始编写业务代码了 SpringBoot与静态资源WebMvcAutoConfiguration打开WebMvcAutoConfiguration.java 1234567891011121314151617181920@Overridepublic void addResourceHandlers(ResourceHandlerRegistry registry) { if (!this.resourceProperties.isAddMappings()) { logger.debug("Default resource handling disabled"); return; } Duration cachePeriod = this.resourceProperties.getCache().getPeriod(); CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl(); if (!registry.hasMappingForPattern("/webjars/**")) { customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**") .addResourceLocations("classpath:/META-INF/resources/webjars/") .setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl)); } String staticPathPattern = this.mvcProperties.getStaticPathPattern(); if (!registry.hasMappingForPattern(staticPathPattern)) { customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern) .addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations())) .setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl)); }}     阅读全文
fightinggg's avatar
fightinggg 4月 16, 2020

SpringBoot3-日志

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial Springboot和日志 考虑和jdbc和数据库驱动一样,我们抽象出一个日志的接口 常见的java日志 JUL,JCL,JBoss-logging,logback,log4j,log4j2,slf4j Java抽象 JCL,SLF4j,Jboss-logging Java实现 Log4j,JUL,Log4j2,logback 怎么选择选择SLF4j+Logback     阅读全文
fightinggg's avatar
fightinggg 4月 15, 2020

SpringBoot2-配置

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial springboot配置配置文件 配置文件的名字是固定的 application.propertiesapplicstion.yml YAML 是一个标记语言,不是一个标记语言 标记语言 以前的配置文件大多是xml文件,yaml以数据为中心,比json、xml等更适合做配置文件 这是yml 12server: port: 8081 这个是xml 123<server> <port>8081</port></server>     阅读全文
fightinggg's avatar
fightinggg 4月 15, 2020

SpringBoot1-介绍

nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial 微服务 讲大应用拆分成多个小应用 springboot介绍创建maven工程导入依赖123456789101112<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version></parent><dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency></dependencies>     阅读全文
fightinggg's avatar
fightinggg 4月 15, 2020

mysql-入门

    阅读全文
fightinggg's avatar
fightinggg 4月 13, 2020

Java并发编程13-并发总结

    阅读全文
fightinggg's avatar
fightinggg 4月 13, 2020