IIS deployment issues collection

1, Server error in '/' application. Compile error Description: an error occurred during compilation of the resources required to service the request. Check the following specific error details and modify the source code as appropriate.Compiler error message: CS0016: failed to write to output file "C: \ windows \ Microsoft. Net \ fram ...

Posted by joesaddigh on Wed, 18 Dec 2019 09:33:02 -0800

Crawler: File handling

1. json file processing 1.1 What is json JSON(JavaScript Object Notation) is a lightweight data exchange format.It is based on a subset of ECMAScript, the JS specification developed by the European Computer Association, and uses a text format that is completely independent of the programming language to store and represent data.The concise and ...

Posted by lokesh_kumar_s on Wed, 18 Dec 2019 09:06:17 -0800

How does LoadRunner use scripts to judge whether things pass or fail

Things are often used in the performance test of loadrunner. To judge the server performance through things, how can we know that things are passed? The functions of things passing and failing are as follows: lr_end_transaction("thing", LR_PASS); //adopt lr_end_transaction("thing", LR_FAIL); //fail lr_end_transaction("thing ...

Posted by Submerged on Wed, 18 Dec 2019 08:14:47 -0800

google gcr.io, k8s.gcr.io domestic image

1. First add the official domestic image of docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://registry.docker-cn.co"] } EOF 2. gcr.io image According to the open source project: https://github.com/anjia0532/gcr.io_mirror The author will pull the gcr.io related image down, and then push it to the official d ...

Posted by reversenorm on Wed, 18 Dec 2019 07:56:49 -0800

Spring Boot integrates Redis

Preface This article will simply integrate Redis based on springboot 2.1.8.RELEASE, which is suitable for beginners Introduction to Spring Boot integrated Redis 1. Introduce redis dependency in pom.xml <!-- Redis rely on --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-s ...

Posted by frans-jan on Wed, 18 Dec 2019 06:32:37 -0800

Command that operation and maintenance must master -- Systemd instruction

I. origin Historically, Linux startup Always used init Process. The following command is used to start the service. $ sudo /etc/init.d/apache2 start # perhaps $ service apache2 start This method has two disadvantages. First, it takes a long time to start. init process is started serially. The next process will be started only afte ...

Posted by mwkdesign on Wed, 18 Dec 2019 02:23:27 -0800

From the beginning of web front end to practice: HTML to PDF graphic report practice

Export PDF graphic report practice Method 1: jsPDF When using jsPDF, it should be noted that its default unit is mm, and configuration needs to be passed in when new jsPDF() const doc = new jsPDF({ unit: 'px', format: 'a4' }) This method is useless. This ghost has multiple lines of text and multiple pictures. It's killing! Method 2: w ...

Posted by fireant on Wed, 18 Dec 2019 02:19:20 -0800

WEB-WORKER advanced learning

Because of the JS single threaded model, though, requests can be processed asynchronously. But in the end, it needs to be handled by the main line In order to decouple rendering (request, calculation), the api request layer built by axios is modified, and all data requests are submitted to web work. Separate rendering from request problem H ...

Posted by microthick on Tue, 17 Dec 2019 23:55:05 -0800

Request and upload files, Session introduction, Restful API, Nodemon

By Jeskson Source: front end tavern of dada Request and upload files GET and POST requests const express = require('express'); const app = express(); app.set('view', 'pug'); app.get('/', function(req,res){ // Output response message req.send('hello') }); app.get('/users/:gender', function(req,res){ // Get route parameters let gender = ...

Posted by yodasan000 on Tue, 17 Dec 2019 21:59:38 -0800

Introduction to python tool library dubbo: accessing dubbo service through telnet interface

brief introduction After dubbo service is released, we can use telnet command to debug and manage. For more information, see Telnet Command Reference Manual telnet call example: $ telnet 172.17.103.110 9097 Trying 172.17.103.110... Connected to 172.17.103.110. Escape character is '^]'. dubbo>ls com.oppo.sso.service.onekey.IOne ...

Posted by Elephant on Tue, 17 Dec 2019 08:39:32 -0800