老鬼的博客 来都来啦,那就随便看看吧~
Tomcat优化
发布于: 2018-04-28 更新于: 2018-05-08 分类于: Tomcat

server.xml配置

配置最大接受的请求数,最小最大线程数等信息

  • 配置内容如下

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    <Connector port="8080" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443"
    URIEncoding="UTF-8"
    maxThreads="250"
    maxHttpHeaderSize="8192"
    disableUploadTimeout="true"
    acceptCount="80"
    emptySessionPath="true"
    enableLookups="false"
    compression="500"
    compressableMimeType="text/html,text/xml,text/plain,application/octet-stream"
    />
阅读更多
Tomcat配置JNDI
发布于: 2018-04-28 更新于: 2018-05-08 分类于: Tomcat

方式一

  • 在context.xml配置resource
1
2
3
4
5
6
7
8
9
10
11
12
<Resource 
name="jdbc/tbplus"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="root"
password="a123456"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://127.0.0.1:3306/bearoff"
/>
阅读更多
SVN常见错误
发布于: 2018-04-28 更新于: 2019-11-23 分类于: SVN

SVN常见错误

VisualSVN Server post commit hook失效

post commit hook

0.png

阅读更多

Tomcat下载
发布于: 2018-04-28 更新于: 2019-11-23 分类于: Tomcat

Apache官网

Apache官网

官网下载Tomcat

  • 选择版本号

选择你要下载的版本号

t1.png

  • 我这里Tomcat7为例

阅读更多
SVN常用命令
发布于: 2018-04-27 更新于: 2023-04-14 分类于: SVN

SVN命令包,需要将bin配置到path下

1
链接: https://pan.baidu.com/s/1V4M5Yl6mozyeKsvIRxZ8Pw 密码: r7bh
阅读更多
Git常用命令
发布于: 2018-04-27 更新于: 2024-10-29 分类于: Git

1.初始化仓库

1.1 git init

默认在当前路径下初始化仓库
如在C:\git\gitCommondTest文件夹下使用git init,则会初始化仓库gitCommondTest

1.2 git init dirname

初始化文件夹名为dirname的仓库

...
阅读更多
Hexo命令
发布于: 2018-04-24 更新于: 2018-05-08 分类于: 

官网网址
Hexo官方文档

命令

init

1
$ hexo init [folder]
阅读更多
MarkDown语法
发布于: 2018-04-24 更新于: 2019-11-23 分类于: 

标题

1
2
3
4
5
6
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
阅读更多