%% -*- mode: erlang -*-
%% ----------------------------------------------------------------------------
%% RabbitMQ Sample Configuration File.
%%
%% See http://www.rabbitmq.com/configure.html for details.
%% ----------------------------------------------------------------------------
[
{rabbit,
[%%
%% Network Connectivity
%% ====================
%%
%% By default, RabbitMQ will listen on all interfaces, using
%% the standard (reserved) AMQP port.
%%
%% {tcp_listeners, [5672]},
%% To listen on a specific interface, provide a tuple of {IpAddress, Port}.
%% For example, to listen only on localhost for both IPv4 and IPv6:
%%
%% {tcp_listeners, [{"127.0.0.1", 5672},
%% {"::1", 5672}]},
%% SSL listeners are configured in the same fashion as TCP listeners,
%% including the option to control the choice of interface.
%%
%% {ssl_listeners, [5671]},
%% Number of Erlang processes that will accept connections for the TCP
%% and SSL listeners.
%%
%% {num_tcp_acceptors, 10},
%% {num_ssl_acceptors, 1},
%% Maximum time for AMQP 0-8/0-9/0-9-1 handshake (after socket connection
%% and SSL handshake), in milliseconds.
%%
%% {handshake_timeout, 10000},
%% Log levels (currently just used for connection logging).
%% One of 'debug', 'info', 'warning', 'error' or 'none', in decreasing
%% order of verbosity. Defaults to 'info'.
%%
%% {log_levels, [{connection, info}, {channel, info}]},
%% Set to 'true' to perform reverse DNS lookups when accepting a
%% connection. Hostnames will then be shown instead of IP addresses
%% in rabbitmqctl and the management plugin.
%%
%% {reverse_dns_lookups, true},
%%
%% Security / AAA
%% ==============
%%
%% The default "guest" user is only permitted to access the server
%% via a loopback interface (e.g. localhost).
%% {loopback_users, [<<"guest">>]},
%%
%% Uncomment the following line if you want to allow access to the
%% guest user from anywhere on the network.
%% {loopback_users, []},
%% Configuring SSL.
%% See http://www.rabbitmq.com/ssl.html for full documentation.
%%
%% {ssl_options, [{cacertfile, "/path/to/testca/cacert.pem"},
%% {certfile, "/path/to/server/cert.pem"},
%% {keyfile, "/path/to/server/key.pem"},
%% {verify, verify_peer},
%% {fail_if_no_peer_cert, false}]},
%% Choose the available SASL mechanism(s) to expose.
%% The two default (built in) mechanisms are 'PLAIN' and
%% 'AMQPLAIN'. Additional mechanisms can be added via
%% plugins.
%%
%% See http://www.rabbitmq.com/authentication.html for more details.
%%
%% {auth_mechanisms, ['PLAIN', 'AMQPLAIN']},
%% Select an authentication database to use. RabbitMQ comes bundled
%% with a built-in auth-database, based on mnesia.
%%
%% {auth_backends, [rabbit_auth_backend_internal]},
%% Configurations supporting the rabbitmq_auth_mechanism_ssl and
%% rabbitmq_auth_backend_ldap plugins.
%%
%% NB: These options require that the relevant plugin is enabled.
%% See http://www.rabbitmq.com/plugins.html for further details.
%% The RabbitMQ-auth-mechanism-ssl plugin makes it possible to
%% authenticate a user based on the client's SSL certificate.
%%
%% To use auth-mechanism-ssl, add to or replace the auth_mechanisms
%% list with the entry 'EXTERNAL'.
%%
%% {auth_mechanisms, ['EXTERNAL']},
%% The rabbitmq_auth_backend_ldap plugin allows the broker to
%% perform authentication and authorisation by deferring to an
%% external LDAP server.
%%
%% For more information about configuring the LDAP backend, see
%% http://www.rabbitmq.com/ldap.html.
%%
%% Enable the LDAP auth backend by adding to or replacing the
%% auth_backends entry:
%%
%% {auth_backends, [rabbit_auth_backend_ldap]},
%% This pertains to both the rabbitmq_auth_mechanism_ssl plugin and
%% STOMP ssl_cert_login configurations. See the rabbitmq_stomp
%% configuration section later in this file and the README in
%% https://github.com/rabbitmq/rabbitmq-auth-mechanism-ssl for further
%% details.
%%
%% To use the SSL cert's CN instead of its DN as the username
%%
%% {ssl_cert_login_from, common_name},
%% SSL handshake timeout, in milliseconds.
%%
%% {ssl_handshake_timeout, 5000},
%% Password hashing implementation. Will only affect newly
%% created users. To recalculate hash for an existing user
%% it's necessary to update her password.
%%
%% {password_hashing_module, rabbit_password_hashing_sha256},
%%
%% Default User / VHost
%% ====================
%%
%% On first start RabbitMQ will create a vhost and a user. These
%% config items control what gets created. See
%% http://www.rabbitmq.com/access-control.html for further
%% information about vhosts and access control.
%%
%% {default_vhost, <<"/">>},
%% {default_user, <<"guest">>},
%% {default_pass, <<"guest">>},
%% {default_permissions, [<<".*">>, <<".*">>, <<".*">>]},
%% Tags for default user
%%
%% For more details about tags, see the documentation for the
%% Management Plugin at http://www.rabbitmq.com/management.html.
%%
%% {default_user_tags, [administrator]},
%%
%% Additional network and protocol related configuration
%% =====================================================
%%
%% Set the default AMQP heartbeat delay (in seconds).
%%
%% {heartbeat, 600},
%% Set the max permissible size of an AMQP frame (in bytes).
%%
%% {frame_max, 131072},
%% Set the max frame size the server will accept before connection
%% tuning occurs
%%
%% {initial_frame_max, 4096},
%% Set the max permissible number of channels per connection.
%% 0 means "no limit".
%%
%% {channel_max, 128},
%% Customising Socket Options.
%%
%% See (http://www.erlang.org/doc/man/inet.html#setopts-2) for
%% further documentation.
%%
%% {tcp_listen_options, [{backlog, 128},
%% {nodelay, true},
%% {exit_on_close, false}]},
%%
%% Resource Limits & Flow Control
%% ==============================
%%
%% See http://www.rabbitmq.com/memory.html for full details.
%% Memory-based Flow Control threshold.
%%
%% {vm_memory_high_watermark, 0.4},
%% Alternatively, we can set a limit (in bytes) of RAM used by the node.
%%
%% {vm_memory_high_watermark, {absolute, 1073741824}},
%%
%% Or you can set absolute value using memory units.
%%
%% {vm_memory_high_watermark, {absolute, "1024M"}},
%%
%% Supported units suffixes:
%%
%% k, kiB: kibibytes (2^10 bytes)
%% M, MiB: mebibytes (2^20)
%% G, GiB: gibibytes (2^30)
%% kB: kilobytes (10^3)
%% MB: megabytes (10^6)
%% GB: gigabytes (10^9)
%% Fraction of the high watermark limit at which queues start to
%% page message out to disc in order to free up memory.
%%
%% Values greater than 0.9 can be dangerous and should be used carefully.
%%
%% {vm_memory_high_watermark_paging_ratio, 0.5},
%% Interval (in milliseconds) at which we perform the check of the memory
%% levels against the watermarks.
%%
%% {memory_monitor_interval, 2500},
%% Set disk free limit (in bytes). Once free disk space reaches this
%% lower bound, a disk alarm will be set - see the documentation
%% listed above for more details.
%%
%% {disk_free_limit, 50000000},
%%
%% Or you can set it using memory units (same as in vm_memory_high_watermark)
%% {disk_free_limit, "50MB"},
%% {disk_free_limit, "50000kB"},
%% {disk_free_limit, "2GB"},
%% Alternatively, we can set a limit relative to total available RAM.
%%
%% Values lower than 1.0 can be dangerous and should be used carefully.
%% {disk_free_limit, {mem_relative, 2.0}},
%%
%% Misc/Advanced Options
%% =====================
%%
%% NB: Change these only if you understand what you are doing!
%%
%% To announce custom properties to clients on connection:
%%
%% {server_properties, []},
%% How to respond to cluster partitions.
%% See http://www.rabbitmq.com/partitions.html for further details.
%%
%% {cluster_partition_handling, ignore},
%% Make clustering happen *automatically* at startup - only applied
%% to nodes that have just been reset or started for the first time.
%% See http://www.rabbitmq.com/clustering.html#auto-config for
%% further details.
%%
%% {cluster_nodes, {['rabbit@my.host.com'], disc}},
%% Interval (in milliseconds) at which we send keepalive messages
%% to other cluster members. Note that this is not the same thing
%% as net_ticktime; missed keepalive messages will not cause nodes
%% to be considered down.
%%
%% {cluster_keepalive_interval, 10000},
%% Set (internal) statistics collection granularity.
%%
%% {collect_statistics, none},
%% Statistics collection interval (in milliseconds).
%%
%% {collect_statistics_interval, 5000},
%% Explicitly enable/disable hipe compilation.
%%
%% {hipe_compile, true},
%% Timeout used when waiting for Mnesia tables in a cluster to
%% become available.
%%
%% {mnesia_table_loading_timeout, 30000},
%% Size in bytes below which to embed messages in the queue index. See
%% http://www.rabbitmq.com/persistence-conf.html
%%
%% {queue_index_embed_msgs_below, 4096}
]},
%% ----------------------------------------------------------------------------
%% Advanced Erlang Networking/Clustering Options.
%%
%% See http://www.rabbitmq.com/clustering.html for details
%% ----------------------------------------------------------------------------
{kernel,
[%% Sets the net_kernel tick time.
%% Please see http://erlang.org/doc/man/kernel_app.html and
%% http://www.rabbitmq.com/nettick.html for further details.
%%
%% {net_ticktime, 60}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ Management Plugin
%%
%% See http://www.rabbitmq.com/management.html for details
%% ----------------------------------------------------------------------------
{rabbitmq_management,
[%% Pre-Load schema definitions from the following JSON file. See
%% http://www.rabbitmq.com/management.html#load-definitions
%%
%% {load_definitions, "/path/to/schema.json"},
%% Log all requests to the management HTTP API to a file.
%%
%% {http_log_dir, "/path/to/access.log"},
%% Change the port on which the HTTP listener listens,
%% specifying an interface for the web server to bind to.
%% Also set the listener to use SSL and provide SSL options.
%%
%% {listener, [{port, 12345},
%% {ip, "127.0.0.1"},
%% {ssl, true},
%% {ssl_opts, [{cacertfile, "/path/to/cacert.pem"},
%% {certfile, "/path/to/cert.pem"},
%% {keyfile, "/path/to/key.pem"}]}]},
%% One of 'basic', 'detailed' or 'none'. See
%% http://www.rabbitmq.com/management.html#fine-stats for more details.
%% {rates_mode, basic},
%% Configure how long aggregated data (such as message rates and queue
%% lengths) is retained. Please read the plugin's documentation in
%% http://www.rabbitmq.com/management.html#configuration for more
%% details.
%%
%% {sample_retention_policies,
%% [{global, [{60, 5}, {3600, 60}, {86400, 1200}]},
%% {basic, [{60, 5}, {3600, 60}]},
%% {detailed, [{10, 5}]}]}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ Shovel Plugin
%%
%% See http://www.rabbitmq.com/shovel.html for details
%% ----------------------------------------------------------------------------
{rabbitmq_shovel,
[{shovels,
[%% A named shovel worker.
%% {my_first_shovel,
%% [
%% List the source broker(s) from which to consume.
%%
%% {sources,
%% [%% URI(s) and pre-declarations for all source broker(s).
%% {brokers, ["amqp://user:password@host.domain/my_vhost"]},
%% {declarations, []}
%% ]},
%% List the destination broker(s) to publish to.
%% {destinations,
%% [%% A singular version of the 'brokers' element.
%% {broker, "amqp://"},
%% {declarations, []}
%% ]},
%% Name of the queue to shovel messages from.
%%
%% {queue, <<"your-queue-name-goes-here">>},
%% Optional prefetch count.
%%
%% {prefetch_count, 10},
%% when to acknowledge messages:
%% - no_ack: never (auto)
%% - on_publish: after each message is republished
%% - on_confirm: when the destination broker confirms receipt
%%
%% {ack_mode, on_confirm},
%% Overwrite fields of the outbound basic.publish.
%%
%% {publish_fields, [{exchange, <<"my_exchange">>},
%% {routing_key, <<"from_shovel">>}]},
%% Static list of basic.properties to set on re-publication.
%%
%% {publish_properties, [{delivery_mode, 2}]},
%% The number of seconds to wait before attempting to
%% reconnect in the event of a connection failure.
%%
%% {reconnect_delay, 2.5}
%% ]} %% End of my_first_shovel
]}
%% Rather than specifying some values per-shovel, you can specify
%% them for all shovels here.
%%
%% {defaults, [{prefetch_count, 0},
%% {ack_mode, on_confirm},
%% {publish_fields, []},
%% {publish_properties, [{delivery_mode, 2}]},
%% {reconnect_delay, 2.5}]}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ Stomp Adapter
%%
%% See http://www.rabbitmq.com/stomp.html for details
%% ----------------------------------------------------------------------------
{rabbitmq_stomp,
[%% Network Configuration - the format is generally the same as for the broker
%% Listen only on localhost (ipv4 & ipv6) on a specific port.
%% {tcp_listeners, [{"127.0.0.1", 61613},
%% {"::1", 61613}]},
%% Listen for SSL connections on a specific port.
%% {ssl_listeners, [61614]},
%% Number of Erlang processes that will accept connections for the TCP
%% and SSL listeners.
%%
%% {num_tcp_acceptors, 10},
%% {num_ssl_acceptors, 1},
%% Additional SSL options
%% Extract a name from the client's certificate when using SSL.
%%
%% {ssl_cert_login, true},
%% Set a default user name and password. This is used as the default login
%% whenever a CONNECT frame omits the login and passcode headers.
%%
%% Please note that setting this will allow clients to connect without
%% authenticating!
%%
%% {default_user, [{login, "guest"},
%% {passcode, "guest"}]},
%% If a default user is configured, or you have configured use SSL client
%% certificate based authentication, you can choose to allow clients to
%% omit the CONNECT frame entirely. If set to true, the client is
%% automatically connected as the default user or user supplied in the
%% SSL certificate whenever the first frame sent on a session is not a
%% CONNECT frame.
%%
%% {implicit_connect, true}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ MQTT Adapter
%%
%% See https://github.com/rabbitmq/rabbitmq-mqtt/blob/stable/README.md
%% for details
%% ----------------------------------------------------------------------------
{rabbitmq_mqtt,
[%% Set the default user name and password. Will be used as the default login
%% if a connecting client provides no other login details.
%%
%% Please note that setting this will allow clients to connect without
%% authenticating!
%%
%% {default_user, <<"guest">>},
%% {default_pass, <<"guest">>},
%% Enable anonymous access. If this is set to false, clients MUST provide
%% login information in order to connect. See the default_user/default_pass
%% configuration elements for managing logins without authentication.
%%
%% {allow_anonymous, true},
%% If you have multiple chosts, specify the one to which the
%% adapter connects.
%%
%% {vhost, <<"/">>},
%% Specify the exchange to which messages from MQTT clients are published.
%%
%% {exchange, <<"amq.topic">>},
%% Specify TTL (time to live) to control the lifetime of non-clean sessions.
%%
%% {subscription_ttl, 1800000},
%% Set the prefetch count (governing the maximum number of unacknowledged
%% messages that will be delivered).
%%
%% {prefetch, 10},
%% TCP/SSL Configuration (as per the broker configuration).
%%
%% {tcp_listeners, [1883]},
%% {ssl_listeners, []},
%% Number of Erlang processes that will accept connections for the TCP
%% and SSL listeners.
%%
%% {num_tcp_acceptors, 10},
%% {num_ssl_acceptors, 1},
%% TCP/Socket options (as per the broker configuration).
%%
%% {tcp_listen_options, [{backlog, 128},
%% {nodelay, true}]}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ AMQP 1.0 Support
%%
%% See https://github.com/rabbitmq/rabbitmq-amqp1.0/blob/stable/README.md
%% for details
%% ----------------------------------------------------------------------------
{rabbitmq_amqp1_0,
[%% Connections that are not authenticated with SASL will connect as this
%% account. See the README for more information.
%%
%% Please note that setting this will allow clients to connect without
%% authenticating!
%%
%% {default_user, "guest"},
%% Enable protocol strict mode. See the README for more information.
%%
%% {protocol_strict_mode, false}
]},
%% ----------------------------------------------------------------------------
%% RabbitMQ LDAP Plugin
%%
%% See http://www.rabbitmq.com/ldap.html for details.
%%
%% ----------------------------------------------------------------------------
{rabbitmq_auth_backend_ldap,
[%%
%% Connecting to the LDAP server(s)
%% ================================
%%
%% Specify servers to bind to. You *must* set this in order for the plugin
%% to work properly.
%%
%% {servers, ["your-server-name-goes-here"]},
%% Connect to the LDAP server using SSL
%%
%% {use_ssl, false},
%% Specify the LDAP port to connect to
%%
%% {port, 389},
%% LDAP connection timeout, in milliseconds or 'infinity'
%%
%% {timeout, infinity},
%% Enable logging of LDAP queries.
%% One of
%% - false (no logging is performed)
%% - true (verbose logging of the logic used by the plugin)
%% - network (as true, but additionally logs LDAP network traffic)
%%
%% Defaults to false.
%%
%% {log, false},
%%
%% Authentication
%% ==============
%%
%% Pattern to convert the username given through AMQP to a DN before
%% binding
%%
%% {user_dn_pattern, "cn=${username},ou=People,dc=example,dc=com"},
%% Alternatively, you can convert a username to a Distinguished
%% Name via an LDAP lookup after binding. See the documentation for
%% full details.
%% When converting a username to a dn via a lookup, set these to
%% the name of the attribute that represents the user name, and the
%% base DN for the lookup query.
%%
%% {dn_lookup_attribute, "userPrincipalName"},
%% {dn_lookup_base, "DC=gopivotal,DC=com"},
%% Controls how to bind for authorisation queries and also to
%% retrieve the details of users logging in without presenting a
%% password (e.g., SASL EXTERNAL).
%% One of
%% - as_user (to bind as the authenticated user - requires a password)
%% - anon (to bind anonymously)
%% - {UserDN, Password} (to bind with a specified user name and password)
%%
%% Defaults to 'as_user'.
%%
%% {other_bind, as_user},
%%
%% Authorisation
%% =============
%%
%% The LDAP plugin can perform a variety of queries against your
%% LDAP server to determine questions of authorisation. See
%% http://www.rabbitmq.com/ldap.html#authorisation for more
%% information.
%% Set the query to use when determining vhost access
%%
%% {vhost_access_query, {in_group,
%% "ou=${vhost}-users,ou=vhosts,dc=example,dc=com"}},
%% Set the query to use when determining resource (e.g., queue) access
%%
%% {resource_access_query, {constant, true}},
%% Set queries to determine which tags a user has
%%
%% {tag_queries, []}
]}
].
- 前言
- mysql8配置文件
- html
- css
- stylus安裝與自動編譯(轉)
- javascript
- 正則文件后綴名
- promise
- git
- 常用命令
- CentOS安裝Git服務器 Centos 6.4 + Git 1.8.2.2 + gitosis
- linux
- 常用命令
- 配置環境變量
- 壓縮解壓
- 開機啟動程序
- ssh使用幫助
- ssh安裝
- FTP安裝
- SCP傳輸文件
- java環境安裝(jdk)
- 第12講 FTP服務器配置
- composer安裝
- centos7,php7安裝redis
- 定時任務crontab
- mount /project: wrong fs type, bad option, bad superblock on project, missing codepage or helper program, or other error.
- mysql
- 第七十四課:設計SQL語句時常用的MySQL內置函數
- 第十一集 MySQL grant用戶授權
- 設置默認字符集為utf8
- mysql插入前判斷數據是否存在
- mysqldump導出數據
- 數據庫優化--mysql
- 插件
- 框架
- 前端框架
- 后端框架
- Laravel
- 安裝composer
- 安裝laravel
- artisan命令行工具
- 備注
- DB facade操作數據庫
- PhpStorm下Laravel代碼智能提示
- 使用查詢構造器操作數據庫
- 使用Eloquent ORM操作數據庫
- laravel時間轉時間戳
- laravel中的blade模板引擎之流程控制
- laravel中的blade模板引擎之基礎語法
- 模板中的ulr
- laravel之request請求
- laravel之response響應
- laravel之session操作
- laravel之middleware操作
- 表單操作
- 表單驗證
- model中一些注意事項
- 文件上傳及配置
- 發送郵件
- laravel緩存
- Laravel中的錯誤與日志
- Laravel中的隊列應用
- 關于laravel中表關系的一對一、一對多、多對一、多對多實踐(轉)
- 密碼生成及驗證
- laravel 使用驗證碼
- laravel中的用戶認證(Auth)
- laravel解決跨域及使用 Passport 服務做 API 認證
- Laravel 項目部署到云服務器(CentOS 7 系統)
- YII
- YII框架控制器之請求(request)處理
- YII框架控制器之響應(response)處理
- YII框架控制器之session處理
- YII框架控制器之cookie處理
- 視圖的創建及數據傳送
- 視圖的數據安全
- 視圖的布局
- 在視圖中顯示另我一個視圖
- 視圖的數據塊
- 數據模型--單表查詢
- 數據模型--單表刪除
- 數據模型--單表添加數據
- 數據模型--單表數據修改
- 數據模型--關聯查詢
- 類的延遲加載
- 類的映射機制
- 組件的延遲加載
- 數據緩存(增刪改查)
- 緩存數據的有效期設置
- 數據緩存中的依賴關系
- 片段緩存介紹
- 片段緩存設置
- 片斷緩存嵌套
- 頁面緩存
- http緩存
- yii2獲取字段及字段注釋
- yii2 修改默認的控制品和方法
- yii2 AccessControll配置解釋
- validate
- 什么是validate
- 入門
- 方法
- 屬性
- 高級
- 案例
- 規則
- phpexcel導出表格打開后發現不可取內容
- svn
- linux下搭建svn服務器
- MAC下SVN的常用命令
- nginx
- CentOS6.5下Nginx1.7.4安裝記錄(轉載)
- centos7.3下安裝lnmp
- CentOS 7.2 php7 編譯安裝 posix擴展
- 前后端分離nginx配置文件
- 綜合
- lnmp環境安裝(nginx1.9.11 php7.0.3 mysql5.7.11)
- grunt&seajs
- grunt安裝使用
- tp+layui使用
- 初始化配置
- IconFont 圖標
- php
- 時間比較
- 計算兩個日期相差天數
- php7新特性
- 非對稱加密解密
- php中對象數組互轉
- tp5
- 模型操作
- 驗證碼
- 環境變量ENV
- 軟刪除
- phpstudy中隱藏入口文件
- tp5.1
- facade
- 中間件
- python
- scrapy
- 常用命令
- centos7.3下安裝python3.7+scrapy
- pyinstaller打包遇到的問題
- python導出excel(含插入圖片,超鏈接)
- Centos7安裝python3+Selenium+chrome+chromedriver詳細
- selenium無界面chromedriver
- pandas數據分析庫
- pandas基礎Series,DataFrame
- pandas選擇數據
- pandas讀取及寫入文件
- pandas賦值及操作
- pandas處理丟失數據
- django
- django orm模型常用字段及參數
- 爬取視頻注意事項
- vue
- vue安裝使用常用操作
- webpack簡易使用教程及注意事項
- vue備忘錄
- vue-resource請求數據
- axios請求數據
- 父子組件之間傳值,獲取數據方法屬性
- 非父子組件傳值
- 路由編程式導航
- 路由的嵌套(父子路由)
- 使用vuex
- 最簡單的非模塊化的vue筆記(轉)
- vue中使用mock模擬api請求
- vue操作Vuex流程
- is和:is的區別
- vue2.6引入jquery和bootstrap
- nginx,vue部署前后端分離項目
- vue動態路由和get傳值
- C++
- 初始string
- 類屬性方法封裝
- C++類外定義
- 類外定義代碼演示
- 拷貝構造函數
- 構造函數
- 析構函數
- 構造函數初始化列表
- 析構函數代碼演示
- swoole
- swoole安裝
- centos7下安裝jdk安裝
- centos7 安裝hadoop
- IntelliJ IDEA 常用快捷鍵
- 編輯器配置
- Ij idea
- phpstorm 格式化 數組換行顯示
- phpstorm使用代碼片段Live Templates
- PHPstorm中格式化讓function的花括號跟在方法名后面,而不是另起一行
- JetBrains 各種IDE使用git技巧
- Java
- Map
- Student類
- MapTest
- ListTest
- springBoot處理http請求
- springboot熱部署
- idea編輯器基本設置和使用技巧
- 模式
- 裝飾者模式
- spring多個環境配置文件
- 讀取配置文件的兩種方式和引入configuration-processor
- SpringBoot整合Mybatis
- SpringBoot整合junit單元測試
- springboot整合springDataJPA
- SpringBoot整合Redis
- Spring-Data-JPA
- 主鍵生成策略
- 靜態代碼塊的形式創建createEntityManagerFactory
- jpa模型或實體類
- jpa增刪改查
- JPA的核心配置文件persistence.xml
- JPQL查詢
- jpa 學習筆記
- springdatajpa的操作
- 1.pom.xml引入坐標(依賴)
- 2.springDataJpa配置文件
- 3.創建數據庫表實體類并配置映射關系
- mybatis學習
- 0.創建maven工程,引入坐標
- 1.mybatis配置文件
- 2.創建實體類
- 3.創建dao(mapper)
- 4.創建mapper文件
- 5.測試
- OGNL表達式
- 局部變量和成員變量
- 面向對象三大特征
- 單元測試
- 注解
- 注解筆記
- TestCheck
- JDBC
- jdbc筆記
- jdbc示例
- JDBC添加記錄
- JDBC更新記錄
- JDBC刪除記錄
- JDBC執行DDL語句
- JDBC封裝類練習
- JDBC工具類
- JDBC事務筆記
- JDBC事務示例
- JDBC數據庫連接池
- JDBC數據庫連接池c3p0配置文件
- JDBC數據庫連接池c3p0示例代碼
- JDBC數據庫連接池druid配置文件
- JDBC數據庫連接池druid工具類
- JDBC數據庫連接池druid示例代碼
- JDBCTemplate筆記
- JDBCTemplate示例代碼
- JDBC封裝類Emp
- spring
- 自定義bean工廠
- spring中的bean
- 創建bean的三種方式之一
- 創建bean的三種方式之二
- 創建bean的三種方式之三
- bean的作用域
- bean對象的生命周期
- 依賴注入之一 構造函數注入
- 依賴注入之二 set方法注入
- 依賴注入之二 set方法注入(復雜類型/集合類型注入)
- IoC注解筆記及示例
- springMVC
- 1.搭建開發環境并測試
- 2.通過配置過濾器解決中文亂碼問題
- 3.參數綁定到實體類,集合類
- 4.自定義類型轉換器
- 5.常用注解
- 6.SpringMVC返回值類型及響應數據類型
- 6.1設置過濾靜態資源,防止被攔截
- 6.2引入json處理包jackson
- 7.文件上傳及解決跨域問題
- 8.自定義異常處理和自定義攔截器
- 9.SSM整合
- maven
- 解決依賴沖突的問題
- maven常用操作命令
- 使用nexus搭建私有服務器
- maven生命周期
- springboot-多模塊項目搭建
- springBoot+JPA結合操作案例
- 1.pom.xml
- 2.配置
- 3.實體類(domain)
- 4.repository(dao層)
- 5.測試1--簡單curd
- 6.測試2---復雜操作
- 7.動態查詢(排序分頁)
- 8.多表操作: 一對多
- 1.實體類
- 2.repository(dao層)
- 3.測試
- 0.說明
- 9.多表操作:多對多
- 0.說明
- 1.實體類
- 2.repository(dao層)
- 3.測試
- 10.對象導航查詢
- android安卓
- adb工具常用命令
- uiautomatorviewer工具使用
- aapt工具
- docker
- docker基礎命令
- 創建appium容器以及設置appium容器連接安卓模擬器
- docker commit創造鏡像
- 使用dockerfile創建docker鏡像
- 共享文件掛載
- windows7下利用docekr搭建nmp環境
- 解決dockerwindows下mysql掛載問題
- docker下配置laravel項目
- Vue2.5開發去哪兒網App 從零基礎入門到實戰項目
- 3-4計算屬性,方法,偵聽器
- 4-1組個使用中的細節點 is ref
- 3-1Vue實例
- 3-2Vue實例生命周期函數
- 3-3模板語法
- 3-5計算屬性的setter和getter
- 3-6Vue中的樣式綁定
- 3-7Vue中的條件渲染
- 3-8Vue中的列表渲染
- 4-2父子組件傳值
- 4-3組件參數校驗與非Props特性
- 4-4給組件綁定原生事件 native
- 4-5非父子組件間的傳值(Bus,總線,或稱為發布訂閱模式,或稱觀察者模式)
- 4-6Vue插槽(slot)
- 4-7作用域插槽
- 4-8動態組件與v-once指令 :is
- 5-1Vue中的CSS動畫原理
- 5-2在Vue中使用 animate.css 庫
- 5-3Vue中同時使用過渡和動畫
- 5-4Vue中的 Js 動畫與 Velocity.js 的結合
- 5-5Vue中多個元素或組件的過渡
- 5-6Vue中的列表過渡
- 5-7Vue中的動畫封裝
- 5-8本章小節
- 微信小程序
- 微信小程序引用第三方組件(以安裝vant為例)
- 微信小程序云開發--云存儲
- 微信公眾號
- 微信公眾號服務器配置
- workerman GatewayWorker
- gateway worker工作原理
- Ubuntu18.04 開機自動運行某個程序/命令等
- 極客專屬的接口協作管理工具api
- vue開發環境配置跨域,一步到位
- nginx配置跨域請求
- h5開發
- swipper
- vue樣式穿透
- vue2.6+配置文件vue.config.js
- css偽類/偽元素一覽表
- 穿梭框單選demo
- vue中keep-alive與activated
- vue2.6配置跨域,代理轉發
- vue中的keep-alive
- 前端兼容
- 富文本
- axios封裝
- egg.js接收請求的方式
- eggjs擴展helper
- eggjs中間件使用
- 驗證或校驗正則大全
- eggjs中cookie
- eggjs路由跳轉
- eggjs中session
- 頁面元素拖拽效果
- webstorm配置typescript
- node中對mysql封裝成同步操作
- node對mssql封裝成同步操作
- php獲取無限分級最末級的id
- egg
- egg配置第三方中間件
- 開啟服務器壓縮功能
- egg-view-nunjucks模板原樣輸出html
- cheerio模塊的安裝使用方法
- mongoos增,刪,改,查
- js--中文轉拼音
- 選項功能組合操作
- entity
- dubbo
- 1.centos下快速安裝單機Zookeeper
- 2.安裝最新版的dubbo管控臺
- dubbo筆記
- 3.dubbo與springboot整合
- rabbitmq
- MQ的優勢和劣勢及應用條件
- 配置文件
- rabbitmq消息可靠性
- 消費端限流
- TTL
- 死信隊列
- 延遲隊列
- 應用問題:消息可靠性保障
- 應用問題:消息冪等性保障
- xmlns
- docker安裝elasticsearch
- springboot整合elasticsearch
- Ribbon負載均衡策略
- 在非空目錄下創建git倉庫并把目錄下文件推送到遠端
- 4種常用的rest方式
- springcloud服務熔斷
- springcloud服務降級
- linux下自動備份mysql(適用版本5.7.28)
- netty
- ServerBootstrap
- option與childOption
- channelOption常量
- handler()和childHandler()
- localAddress()和remoteAddress()
- 將byteBuffer轉為string
- Netty在線學習手冊
- protobuf
- mac下安裝protobuf
- protobuf3語法
- netty+protobuf結合使用案例1
- 原型設計流程圖思維導圖工具
- NIO
- NIO快速入門server端
- NIO快速入門client端
- NIO群聊系統Server端
- NIO群聊系統Client端
- 傳統方式文件傳輸-server端
- 傳統方式文件傳輸-client端
- NIO方式傳輸文件-server
- NIO方式傳輸文件-client
- 線程
- 線程池
- thymeleaf來構建郵件模板
- 人人開源 renren-fast-vue 安裝出錯解決辦法
- log4j.properties
- logging.properties
- stream().map().sorted().collect(Collectors.toList())
- 基于java的BCC(異或校驗)
- 若依(ruoyi-cloud)新建子模塊
- jenkins自動部署
- yii自動加載自定義文件
- yii2 response響應配置
- vue項目打包成docker鏡像
- docker運行mysql
- 免費的docker鏡像服務器
- docker打包springboot項目為鏡像
- docker運行redis
- ruoyi-vue 頭像
- docker安裝portainer
- docker部署mysql8(完善版)