How to convert the Preparing and Parameters in Mybatis log into executable SQL gracefully

Original link During the epidemic, did you feel sick when you were staying at home~~ The company has opened VPN, mobile computers can connect, mobile phones can work with APP test package, so walking has been at home for 11 days since entering Beijing on February 1, 2020. These two days at home telecomm ...

Posted by zplits on Tue, 11 Feb 2020 23:57:07 -0800

ArcGIS api for javascript accesses server's security services by registering token with IdentityManager

Available environment: A stand-alone server environment that is not federated with a portal.Enprise Environment Access Security Services see two other articleshttps://blog.csdn.net/qq_40376439/article/details/104227280https://blog.csdn.net/qq_40376439/article/details/104217511Scenario for use: When we p ...

Posted by manyamile on Tue, 11 Feb 2020 18:08:44 -0800

JavaScript relearning, leak finding

JavaScript relearning, leak picking (5) Date object Introduction to common methods of Date object //Common methods of Date object <script type="text/javascript"> //Instantiate a Date object var date = new Date(); // Get current year var year = date.getFullYear(); console.log ...

Posted by ehutchison on Tue, 11 Feb 2020 06:20:03 -0800

Front end learning from entry to advanced record 23 (webapi)

Learning objectives Master the concept of API and Web API Master the common way of calling API provided by browser Can develop common page interaction functions through API Be able to use search engine to solve problems 1. Web API Introduction to Web API The concept of API API (Application Prog ...

Posted by lajocar on Tue, 11 Feb 2020 03:38:03 -0800

Leave back to hell and enter the Promise Era

brief introduction In the JavaScript world, all code is executed by a single thread. As a result of this "defect", all network operations and browser events of JavaScript must be executed asynchronously, so the expected results are often different. Because of JS flexibility, callback callbac ...

Posted by goatboy on Tue, 11 Feb 2020 00:36:09 -0800

JAVAEE takes a closer look at JavaWeb 11 - JavaScript Advanced

Content: 1. JavaScript: 1. ECMAScript: 2. BOM: 3. DOM: 1. Event DOM Simple Learning: To meet case requirements *Function: Control the content of html documents *Get page label (element) object: Element * document.getElementById("id value"): Get the element object from the eleme ...

Posted by anybody99 on Mon, 10 Feb 2020 18:10:52 -0800

Download files through jQuery.Ajax

I have a struts 2 operation on the server side for file download. <action name="download" class="com.xxx.DownAction"> <result name="success" type="stream"> <param name="contentType">text/plain</param> <param name="inputName">imageStream</param> <param name="contentDisposition ...

Posted by Greaser9780 on Mon, 10 Feb 2020 03:04:08 -0800

Linux storage IO stack -- an overview of SCSI subsystem

Summary Hierarchical architecture of Linux SCSI subsystem: Low level: it represents the actual driver of the physical interface with SCSI, such as the driver developed by each manufacturer for its spe ...

Posted by networkguy on Sun, 09 Feb 2020 20:20:54 -0800

Create a date using the set time zone instead of using a string representation

I have a web page with three drop-down menus, day, month and year. If I use the JavaScript Date constructor with numbers, I get the Date object for the current time zone: new Date(xiYear, xiMonth, xiDate) Enter the correct date, but because of daylight saving time, it thinks it's GMT + 01:00. The problem here is that I then passed the ...

Posted by Caesar on Sun, 09 Feb 2020 05:36:25 -0800

axios in vue

axios promise based on http client for browser and nodejs characteristic Browser side initiates XMLHttpRequests request http request from node Support Promise API Listen for requests and returns Conversion request and return Cancellation request Automatically convert json data Client support mitigation install Using npm: npm install axios -- ...

Posted by mjahkoh on Fri, 07 Feb 2020 10:38:51 -0800