随笔分类 -  各种配置文件

摘要:1.配置upstream http { …… upstream myserver { server 192.168.11.110:8080; server 192.168.11.110:8081; } …… } 2.配置location server { listen 80; server_name 阅读全文
posted @ 2020-06-13 12:34 Tsugar 阅读(2154) 评论(0) 推荐(0)
摘要:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-03-12 16:29 Tsugar 阅读(88) 评论(0) 推荐(0)
摘要:<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:s 阅读全文
posted @ 2020-03-12 15:10 Tsugar 阅读(225) 评论(0) 推荐(0)
摘要:applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/ 阅读全文
posted @ 2020-02-12 13:24 Tsugar 阅读(173) 评论(0) 推荐(0)
摘要:jdbc.properties: mysql.driver=com.mysql.jdbc.Drivermysql.url=jdbc:mysql://localhost:3306/rbac2?serverTimezone=GMT&characterEncoding=UTF8mysql.username 阅读全文
posted @ 2020-02-11 23:13 Tsugar 阅读(1175) 评论(0) 推荐(0)
摘要:ehcache.xml: <?xml version="1.0" encoding="UTF-8"?><ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http: 阅读全文
posted @ 2020-02-11 18:23 Tsugar 阅读(533) 评论(0) 推荐(0)
摘要:mybatis-config.xml: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd 阅读全文
posted @ 2020-02-11 18:21 Tsugar 阅读(174) 评论(0) 推荐(0)
摘要:generator.xml: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1. 阅读全文
posted @ 2020-02-11 18:19 Tsugar 阅读(232) 评论(0) 推荐(0)
摘要:log4j.properties: #配置根节点log4j.rootLogger=DEBUG,Log4jConsole#自定义#log4j.logger 自定义的日志级别#org.apache.ibatis 包名 我自定义日志的目的是为了打印xxx包下的日志#INFO 什么都看不到#WARN 可以看 阅读全文
posted @ 2020-02-11 18:18 Tsugar 阅读(126) 评论(0) 推荐(0)