zno2

上一页 1 2 3 4 5 6 7 8 ··· 21 下一页

2023年6月6日 #

创建用户 和 授权

摘要: https://dev.mysql.com/doc/refman/5.7/en/create-user.html https://dev.mysql.com/doc/refman/5.7/en/grant.html 这个搜索非常好用 CREATE USER 'u1'@'%' IDENTIFIED B 阅读全文

posted @ 2023-06-06 13:16 zno2 阅读(11) 评论(0) 推荐(0) 编辑

XAdES-L 是什么东西 (附 xmldsig.xsd & XAdES.xsd)

摘要: 首先订正,没有XAdES-L ,只有 XAdES-X-L https://en.wikipedia.org/wiki/XAdES XAdES (also named XAdES-BES for "Basic Electronic Signature"), basic form just satisf 阅读全文

posted @ 2023-06-06 13:16 zno2 阅读(26) 评论(0) 推荐(0) 编辑

如何执行request的

摘要: http://nginx.org/en/docs/http/request_processing.html 按照优先级由上至下 1)匹配监听的端口 server { listen 80; ... } server { listen 8080; ... } 2)匹配 request header (H 阅读全文

posted @ 2023-06-06 13:16 zno2 阅读(7) 评论(0) 推荐(0) 编辑

nginx 工作过程| 如何启动

摘要: http://nginx.org/en/docs/beginners_guide.html 配置文件改变之后,不起作用 reload 之后: 如果配置文件正确,则会开启新的worker ,并通知旧的结束手头的工作。(头:你们干完手里的就撤,不要接新活儿) 如果配置文件不正确,则忽略,继续指导旧的工作 阅读全文

posted @ 2023-06-06 13:15 zno2 阅读(10) 评论(0) 推荐(0) 编辑

Linux 环境变量

摘要: /etc/profile vi 编辑追加行 export $JAVA_HOME=/usr/local/jdk1.7 保存退出 source /etc/profile 使其立即生效 阅读全文

posted @ 2023-06-06 13:15 zno2 阅读(3) 评论(0) 推荐(0) 编辑

Running Additional Programs at Boot Time (开机启动)

摘要: https://www.centos.org/docs/5/html/Installation_Guide-en-US/s1-boot-init-shutdown-run-boot.html The /etc/rc.d/rc.local script is executed by the init  阅读全文

posted @ 2023-06-06 13:15 zno2 阅读(8) 评论(0) 推荐(0) 编辑

《大迁徙》 linux

摘要: 1. ECS 云服务器(Elastic Compute Service,简称 ECS) https://cn.aliyun.com/product/ecs 2.确认linux版本 [root@iZ255m2u8usZ ~]# cat /proc/versionLinux version 2.6.32 阅读全文

posted @ 2023-06-06 13:15 zno2 阅读(13) 评论(0) 推荐(0) 编辑

简单小例子 (是否可见)(tab切换)

摘要: <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <scrip 阅读全文

posted @ 2023-06-06 13:15 zno2 阅读(17) 评论(0) 推荐(0) 编辑

post 和 get

摘要: POST Example A simple form using the default application/x-www-form-urlencoded content type: POST / HTTP/1.1 Host: foo.com Content-Type: application/x 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(4) 评论(0) 推荐(0) 编辑

Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content

摘要: https://tools.ietf.org/html/rfc7231 Table of Contents 1. Introduction ....................................................6 1.1. Conformance and Error 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(66) 评论(0) 推荐(0) 编辑

一个performance 计时统计 设计 (ajax)

摘要: Ajax https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started http://api.jquery.com/jQuery.ajax/ Cookie https://developer.mozilla.org/en-US/docs/ 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(16) 评论(0) 推荐(0) 编辑

开源组织

摘要: Mozilla https://developer.mozilla.org/zh-CN/ https://developer.mozilla.org/en/ Apache Spring 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(14) 评论(0) 推荐(0) 编辑

<%= ...%> 区别 <% ... %>

摘要: http://docs.oracle.com/javaee/5/tutorial/doc/bnajq.html https://zh.wikipedia.org/wiki/JSP Table 6-1 Standard Syntax Versus XML Syntax Syntax Elements 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(27) 评论(0) 推荐(0) 编辑

TortoiseSVN ignore 和 global-ignores

摘要: 右键菜单 - TortoiseSVN - Properties - Edit 可以查看全部的属性,进行编辑 Help 可以查看帮助文档 关于svn:ignore 和svn:global-ignores Ignoring Ignoring Files And Directories No Paths 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(63) 评论(0) 推荐(0) 编辑

PatternLayout %d %c %M %L %p %X{context} ...

摘要: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html Conversion CharacterEffect c Used to output the category of the loggi 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(53) 评论(0) 推荐(0) 编辑

log4j 1.x

摘要: https://logging.apache.org/log4j/1.2/manual.html 1. log4j.dtd 在哪里? log4j.jar 包中 org.apache.log4j.xml 下 <?xml version="1.0" encoding="UTF-8" ?> <!-- Li 阅读全文

posted @ 2023-06-06 13:14 zno2 阅读(22) 评论(0) 推荐(0) 编辑

struts.xml action 默认方法和指定方法

摘要: https://struts.apache.org/docs/action-configuration.html#ActionConfiguration-ActionMethods The default entry method to the handler class is defined by 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(13) 评论(0) 推荐(0) 编辑

还贷款的两种方式

摘要: 本金:Capital is a large sum of money which you use to start a business, or which you invest in order to make more money. 利息:Interestis extra money that 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(36) 评论(0) 推荐(0) 编辑

®参考文档: JavaScript reference (like:Statements Block ...)

摘要: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference A block statement (or compound statement in other languages) is used to group zero o 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(13) 评论(0) 推荐(0) 编辑

spring ©

摘要: site:spring.io pdf http://docs.spring.io/spring/docs/current/spring-framework-reference/pdf/spring-framework-reference.pdf spring boot 配置作弊手册 https:// 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(7) 评论(0) 推荐(0) 编辑

Java Language Best Practices

摘要: https://docs.oracle.com/cd/A97688_16/generic.903/bp/java.htm Avoid or Minimize Synchronization Monitor Synchronization Monitor and Fix Resource Leaks 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(7) 评论(0) 推荐(0) 编辑

禁止jsp自动创建session

摘要: JSP 最佳实践 https://docs.oracle.com/cd/A97688_16/generic.903/bp/j2ee.htm jsp自动创建session 是getSession(true) 没有session则自动生成 禁止jsp自动创建session 通过 <%@page sess 阅读全文

posted @ 2023-06-06 13:13 zno2 阅读(22) 评论(0) 推荐(0) 编辑

乐观锁和悲观锁

摘要: http://docs.oracle.com/javaee/6/tutorial/doc/gkjiu.html https://en.wikipedia.org/wiki/Lock_(computer_science) 阅读全文

posted @ 2023-06-06 13:12 zno2 阅读(3) 评论(0) 推荐(0) 编辑

HTTP Basic Authentication>> 401>> Using the browser’s native login prompt

摘要: https://docs.oracle.com/cd/E27515_01/common/tutorials/authn_http_basic.html http://blog.stevensanderson.com/2008/08/25/using-the-browsers-native-login 阅读全文

posted @ 2023-06-06 13:12 zno2 阅读(16) 评论(0) 推荐(0) 编辑

class getMethod Reflection

摘要: 调用 ff() 要用 Method method = A.class.getMethod("ff", new Class<?>[]{}); 或者 Method method = A.class.getMethod("ff", null); 不能用 Method method = A.class.ge 阅读全文

posted @ 2023-06-06 13:12 zno2 阅读(9) 评论(0) 推荐(0) 编辑

weblogic access log

摘要: https://docs.oracle.com/cd/E40518_01/server.761/es_admin/src/tadm_logging_access_log.html 内容举例: 129.184.13.19 - - [06/Jan/2017:18:24:14 +0330] "POST / 阅读全文

posted @ 2023-06-06 13:12 zno2 阅读(19) 评论(0) 推荐(0) 编辑

docker ps 过滤和格式化

摘要: https://docs.docker.com/engine/reference/commandline/ps/ Formatting The formatting option (--format) pretty-prints container output using a Go templat 阅读全文

posted @ 2023-06-06 13:11 zno2 阅读(89) 评论(0) 推荐(0) 编辑

http server , docker hub

摘要: https://hub.docker.com/_/httpd/ 1.Create a Dockerfile in your project FROM httpd:2.4 COPY ./public-html/ /usr/local/apache2/htdocs/ 2. 在同级目录创建文件夹 publ 阅读全文

posted @ 2023-06-06 13:11 zno2 阅读(6) 评论(0) 推荐(0) 编辑

Personal Information Exchange (PKCS #12)

摘要: The Personal Information Exchange format (PFX, also called PKCS #12) supports secure storage of certificates, private keys, and all certificates in a 阅读全文

posted @ 2023-06-06 13:11 zno2 阅读(17) 评论(0) 推荐(0) 编辑

Windows 设置开机自动执行

摘要: shell:startup 会出现一个文件夹 C:\Users\wl\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 将想要自动运行的快捷方式复制进去即可。 阅读全文

posted @ 2023-06-06 13:10 zno2 阅读(30) 评论(0) 推荐(0) 编辑

java.security.InvalidKeyException

摘要: This is the exception for invalid Keys (invalid encoding, wrong length, uninitialized, etc). 情形: Utimaco\SafeGuard CryptoServer\Software\JCE\sample 运行 阅读全文

posted @ 2023-06-06 13:08 zno2 阅读(88) 评论(0) 推荐(0) 编辑

《MySQL 5.7 Reference Manual》 资料,syntax

摘要: https://docs.oracle.com/cd/E19957-01/mysql-refman-5.4/index.html (已离线保存) Copyright © 1997, 2010, Oracle and/or its affiliates. All rights reserved. Th 阅读全文

posted @ 2023-06-06 12:58 zno2 阅读(4) 评论(0) 推荐(0) 编辑

org.codehaus.plexus.archiver.jar.Manifest.write(java.io.PrintWriter)

摘要: Description Resource Path Location Type org.codehaus.plexus.archiver.jar.Manifest.write(java.io.PrintWriter) pom.xml /gs-rest-service line 1 Maven Con 阅读全文

posted @ 2023-06-06 12:42 zno2 阅读(120) 评论(0) 推荐(0) 编辑

29) resources:resources 如何把pom中属性动态使用到java中

摘要: http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html http://maven.apache.org/plugins/maven-resources-plugin/index.html http://m 阅读全文

posted @ 2023-06-06 12:42 zno2 阅读(74) 评论(0) 推荐(0) 编辑

一键修改pom 版本号

摘要: package cn.zno.version; import java.io.File; import java.nio.charset.Charset; import cn.zno.ambi.bas.util.FileUtils; import cn.zno.ambi.bas.xml.XmlUti 阅读全文

posted @ 2023-06-06 12:42 zno2 阅读(66) 评论(0) 推荐(0) 编辑

项目命名约定

摘要: http://maven.apache.org/guides/mini/guide-naming-conventions.html 确定是否是多模块 如果是单模块 com.zno2.项目名 如果是多模块 com.zno2.项目名.模块1 com.zno2.项目名.模块2 以人为镜 apache.or 阅读全文

posted @ 2023-06-06 12:41 zno2 阅读(8) 评论(0) 推荐(0) 编辑

maven-jar-plugin 定制包含哪些内容,不包含哪些

摘要: http://maven.apache.org/plugins/maven-jar-plugin/usage.html 控制打包内容 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId> 阅读全文

posted @ 2023-06-06 12:41 zno2 阅读(17) 评论(0) 推荐(0) 编辑

maven-antrun-plugin

摘要: 1) 依赖 2)默认的classpath http://maven.apache.org/plugins/maven-antrun-plugin/examples/classpaths.html maven.compile.classpath maven.runtime.classpath mave 阅读全文

posted @ 2023-06-06 12:40 zno2 阅读(36) 评论(0) 推荐(0) 编辑

A software release life cycle (Alpha、Beta、RC、GA、SR、M)

摘要: 7.1.0-M14 7.1.0-M13 7.1.0-M12 7.1.0-M11 7.1.0-M10 7.1.0-M9 7.1.0-M8 7.1.0-M7 7.1.0.M6 7.1.0 M5 7.1.0 M4 7.1.0 M3 7.1.0 M2 7.1.0 M1 (milestone) 7.0.0 S 阅读全文

posted @ 2023-06-06 12:40 zno2 阅读(33) 评论(0) 推荐(0) 编辑

导出依赖

摘要: 之前我们知道 dependency:copy-dependencies 可以将依赖拷贝到指定目录,但是不含目录结构,仅是jar列表 现在的需求是导出一个tree 依赖 import java.io.BufferedReader; import java.io.File; import java.io 阅读全文

posted @ 2023-06-06 12:40 zno2 阅读(9) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 21 下一页

导航