This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>aaa</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pods自定义字段内容插件 | |
免登陆支付查看插件 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<inceptionYear> 项目的开发年份 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DTD语法约束 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load-on-startup | |
1. load-on-startup 元素标记容器是否应该在web应用程序启动的时候就加载这个servlet | |
2. 它的值必须是一个整数,表示servlet被加载的先后顺序 | |
3. 如果该元素的值为负数或者没有设置,则容器会当Servlet被请求时再加载。 | |
4. 如果值为正整数或者0时,表示容器在应用启动时就加载并初始化这个servlet,值越小,servlet的优先级越高,就越先被加载。值相同时,容器就会自己选择顺序来加载。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Servlet依赖 | |
```language | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.0.1</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet.jsp</groupId> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Encodes the specifed byte array to a character array and then returns that character array as a String. | |
``` | |
将指定的字节数组编码为字符数组,然后将该字符数组作为String返回。 | |
``` | |
ALGORITHM_NAME:算法名称 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". | |
//加载slf4j包失败;导致无法引用接口 | |
SLF4J: Defaulting to no-operation (NOP) logger implementation | |
解决方案: | |
```<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-nop</artifactId> | |
<version>1.7.2</version> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maven创建的项目 | |
找不到相关的shiro配置文件;需要在main文件夹下创建resources文件夹;将配置文件资源等放到该文件夹下 | |
**Assert.assertEquals作用** | |
assertEquals | |
函数原型1: | |
```language | |
assertEquals([String message],expected,actual) | |
``` | |
参数说明: | |
message是个可选的消息,假如提供,将会在发生错误时报告这个消息。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、建站 |
NewerOlder