# translate words through youdao.com // discription about the code # the problem is the form data of youdao webpage has been coded # import necessary ...
分类:
编程语言 时间:
2020-07-03 01:19:17
阅读次数:
120
##Netty 原理 Netty 是一个高性能、异步事件驱动的 NIO 框架,基于 JAVA NIO 提供的 API 实现。它提供了对TCP、UDP 和文件传输的支持,作为一个异步 NIO 框架,Netty 的所有 IO 操作都是异步非阻塞的,通过 Future-Listener 机制,用户可以方便 ...
分类:
Web程序 时间:
2020-07-02 18:28:43
阅读次数:
63
为什么需要用户行为宽表?把每个用户单日的行为聚合起来组成一张多列宽表,以便之后关联用户维度信息后,进行不同角度的统计分析。 创建用户行为宽表: 这张宽表整合了下单、支付和评论3种行为。 drop table if exists dws_user_action; create external tab ...
分类:
其他好文 时间:
2020-07-02 16:41:55
阅读次数:
137
Tomcat初次使用 //a.html<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>a</title> </head> <body> <form action="http://localhost:8080/ ...
分类:
其他好文 时间:
2020-07-01 22:29:13
阅读次数:
57
Unit testing means testing individual modules of an application in isolation (without any interaction with dependencies) to confirm that the code is d ...
分类:
其他好文 时间:
2020-07-01 12:21:45
阅读次数:
66
selenium处理iframe - 如果定位的标签存在于iframe标签之中,则必须使用switch_to.frame(id) - 动作链(拖动):from selenium.webdriver import ActionChains - 实例化一个动作链对象:action = ActionCha ...
分类:
其他好文 时间:
2020-06-30 20:46:57
阅读次数:
64
处理事务回滚 参考文献:《极客时间-Java业务开发常见错误100例》https://time.geekbang.org/column/article/213295 大多数Spring Boot项目只需要在方法上标记@Transactional注解,即可一键开启方法的事务性配置。 保证事务生效 务必 ...
分类:
其他好文 时间:
2020-06-30 17:43:10
阅读次数:
66
合并单元格报错 > 先生成单元格, 然后再进行合并, 合并之后只保留一个单元格, 反正需要合并的单元格中数据都是一样的, 如果不一样没做测试 ERROR http-nio-9104-exec-7 com.szeport.action.wxgl.ReportAction - [Action expor ...
分类:
编程语言 时间:
2020-06-30 12:40:00
阅读次数:
45
Code Completion Ctrl+空格 helps you quickly complete code statements. It works as you type and gives a list of suggestions available from the current ca ...
分类:
编程语言 时间:
2020-06-30 10:43:50
阅读次数:
213
1.urls from django.conf.urls import url from django.contrib import admin from blog import views urlpatterns = [ url(r'^admin/', admin.site.urls), url( ...
分类:
其他好文 时间:
2020-06-30 00:32:19
阅读次数:
63