New micro ORM framework of Weed3 for java
Weed3, micro ORM framework (support: java sql, xml sql, annotation sql; stored procedure; transaction; cache; monitor; etc.)
The first generation was developed in 2005;
In 2008, the second generation was developed. At that time, it entered the Internet company and had a new understanding of performance;
The third generation was developed in 14 ...
Posted by adamp1 on Tue, 17 Dec 2019 20:08:00 -0800
JavaEE Foundation (05): Filters, listeners, interceptors, application details
Source code for this article: GitHub. Click here || GitEE. Click here
1. Listener listener
1. Introduction to concepts
There are three components of JavaWeb: Servlet, Listener, Filter.A listener is a component that monitors the state changes of related objects in an application.
2. Event Source Object
Refers to the object being listened on.
...
Posted by mudasir on Tue, 17 Dec 2019 15:57:52 -0800
Python - get user details based on photo information (wechat sends original picture or divulges location information)
Preface
The text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling.
By Mona Lippo
PS: if you need Python learning materials, you can click the link below to get th ...
Posted by hubardz on Tue, 17 Dec 2019 00:06:51 -0800
Hands on learning Kotlin - data types
This series is suitable for students who have not learned Kotlin at all and are like quick start students. I am also learning now, so there will be mistakes as notes. If I understand it wrong or have questions, I sincerely hope that you can discuss it in the message area.
data type
1. Boolean type
val b:Boolean=true
Definition type format: acc ...
Posted by itpvision on Sun, 15 Dec 2019 19:55:39 -0800
Table operation of oracle rookie learning
First episode: http://www.arppinging.com/wordpress/?p=96
Table operation of oracle rookie learning
1. create table
In oracle, create table is used to create a table
SQL> create table student(sno number(6),sname varchar2(12),address varchar2(20));
Table created.
SQL> desc student;
Name Null? Type ...
Posted by darklight on Sun, 15 Dec 2019 14:22:33 -0800
Hand tear source code series - functor + observer mode + status = Promise
Preface
Some time ago, I was too busy to write a blog for nearly a month, but Promise had summed up a wave of how to realize it long ago, but at that time, it was purely for the purpose of realization, without elaborating some of the clever designs. Until recently, when I was learning the knowledge related to functional programming, I found tha ...
Posted by Nightseer on Sun, 15 Dec 2019 12:17:47 -0800
Python: simple banking system implementation
1. admin.py defines administrator information and main interface display
#!/usr/bin/env python
# coding:UTF-8
"""
@version: python3.x
@author:Cao Xin Jian
@contact: 617349013@qq.com
@software: PyCharm
@file: admin.py
@time: 2018/9/11 10:14
"""
import time
class Admin():
def __init__(self,name,passwd):
self.name ...
Posted by jimmyt1988 on Sun, 15 Dec 2019 11:26:12 -0800
JavaScript Syntax Basics - Statements and Expressions
about
This article was started by the WowBar team at GitHubAuthor: yvongyang
Catalog
Expression
Sentence
Expression statement
compare
Reference resources
Statements and Expressions
The main difference between expressions and statements in JavaScript is that a statement executes an action and an expression produces a value.Meaning is that an ...
Posted by veroaero on Sun, 15 Dec 2019 10:27:13 -0800
One way linked list with Python
Written in front
Recently, I was looking at the data structure. I found that only these things can make me understand the data types in python more deeply. In fact, no matter how the language changes, the data structure and algorithm are immutable. These things can be learned quickly by learning some other languages.
I may have ...
Posted by sahammondsr on Sun, 15 Dec 2019 08:33:28 -0800
Realization of wave line and cube by css
In recent projects, it is necessary to draw a wavy line effect, which is realized by linear gradient, that is, draw a circle, and then use the background color to cover part of the circle;Realization of cube with css3 attribute perspective and rotation
1. Realization of wavy line by CSS
html
<div class="card-list">
<div class="wave ...
Posted by Getran on Sun, 15 Dec 2019 07:02:44 -0800