Spring + SpringMVC + Mybatis

maven dependency” <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.zhanglu</groupId> <artifactId>honor</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <name>honor Maven Webapp</name> <!-- FIXME change it to the project's...

log4j/slf4j

log4j” Introduction of log4j.jar package <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> Configure log4j.properties log4j.rootLogger=INFO,Console,OneFile,errFile #Output to consoleLog4j.appender.Console=org.apache.log4j.ConsoleAppenderLog4j.appender.Console.encoding=utf-8Log4j.appender.Console.Target=System.outLog4j.appender.Console.layout=org.apache.log4j.PatternLayOutLog4j.appender.Console.layout.ConversionPattern=[%p][%d{yyyy-MM-dd HH\: mm\: SS, SSS}][%c]%m%nOu...

Win10 build FTP server

  Next we will explain to you the detailed operation method of Win10 to build FTP server.       1、First, we search the control panel in Cortana and enter.       2、In the control panel – program, click enable or close the Windows function;           3、Check in front of the FTP server, Web management tools, and the Web core that Internet Information Services can host, click OK, and wait for installation.           4、After installation, search for computer management and access in Cortana.           5、Find the service and applicati...

Summary of identifiers and keywords — hope not to make mistakes again.

((1) table of Java key words A total of 50 key words are shown below. Most of the keywords were agreed upon at the beginning of the Java syntax release, and a few were added with the development of the Java language.  strictfp JDK1.2 Joinassert JDK1.4 Joinenum JDK5.0 JoinThere are a few words that do not have a clear grammatical meaning, but the Java language also stipulates that it is a keyword, and with the development of Java, it may be given grammatical meaning in the future. These key words are also called reserved keywords, such as keyword list.In the tableconst、goto 。   St...

Deep feelings can’t stay, and routines are popular.

This article is from NetEase cloud community. Author: Zhu Rui This article is based on Zhu Rui’s 7,000-word transcript of a shared story in the Salon, a Netease practitioner.     Good afternoon. I’m very glad to be able to talk with you about some operation today. Today, the theme I share is called deep feeling. The reason for choosing this theme is that we often share a variety of good activities in the circle of friends, work groups and so on, all kinds of screen H5. When you see these cases, you will analyze these cases as well as what H5 is good for. If you see it, yo...

C language learning -1

Header file stdio.h              stdlib.h              sting.h Learn the first three header files first. 1: stdio.h  This header file contains various functions of the program interacting with external data.                    To put it plainly, it is used to process input / output. 2:stdlib.h   Standard library standard library header file                     Contains some functions that deal with the system. 3:string.h  Contains some character processing functions.                     Since it is a character, the basic unit of processing...

C language learning notes

The frequent use of C++ and the systematic learning of C have led to a sense of chaos in writing C recently. First of all, it is not clear about what standard header files are C. Secondly: Some functions of C belong to which header file, the principle behind this function implementation more can not be clarified Therefore, it is necessary to relearn C systematically.

P2761 software patch

Title Description T The company found n bugs in a software it developed and issued a batch of M patches for the software. Every patch has its own environment, and a patch can only be used if it contains some errors in the software without others. A patch inWhile eliminating certain mistakes, other mistakes are often added. In other words, for each patch i, there are two corresponding error sets B1 [i] and B2 [i], making it possible to use patch I only if the software contains all the errors in B1 [i] and not any errors in B2 [i]. Patch I will be repairedSome errors in complex software F1[i] a...