本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
[IOS]如何使用swift设置config文件
参考:https://collectiveidea.com/blog/archives/2014/10/01/simple-cocoa-configuration-using-swift-structures
// Nested Configuration Example
struct Config {
static let maxConnections = 10
...
IDEA修改tomcat的server.xml配置方法
两种方法
懒得翻译,都是摘抄的
第一种
来自于
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206329989-How-to-configure-additional-context-information-in-Tomcat
To do this, you have to click on Run > E ...
JSP的pageContext对象和config对象
一 pageContext对象
二 pageContext对象常用方法
三 pageContext方法测试
代码1:
<%@ page language="java" import="java.util.*,java.text.*" contentType="text/html; charset=utf- ...
Config 类
package com.empl.mgr.baseDao.util;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class Config {
private static Properties props = new Propertie ...
springcloud 分布式配置中心 config server & config client
------------------------------------------------------------------------------------------------------------
springcloud (零) springboot 基础 下载
springcloud (一)服务注册中心 eureka 下载
springclou ...
通过Maven构建打包Spring boot,并将config配置文件提取到jar文件外
如果通过不同的IDE打包,着实会觉得依赖性太大,并且容易出现错误,操作也比较复杂
同时,spring-boot-maven-plugin的使用感觉,相关配置太少,并且无法满足方便部署和运行的需求。
这里我们使用了,Maven的如下插件
maven-jar-plugin,负责将应用程序打包成可执行的jar文件
maven-assembly-plugin,负责将整个项目按照自定义的目录结构打成最 ...
MAC下hadoop开发环境搭建系列(五)
分享一个mapreduce程序,作用:将hdfs文件数据批量加载进redis内存数据库:
1.源代码:
/** * Program: * The program is used to batch load data to redis by Jedis. * History: * Created by Qingshou Chen on 15/11/13. */package ...
annotation-config vs(对比) component-scan
<cx:annotation-config/> 可以处理@Autowired,但是不能处理@Component, @Service, @Repository 所以如果你使用了@Component, @Service, @Repository就必须添加<cx:component-scan base-package="">.
<cx:component ...
net.sf.json.JsonConfig整合net.sf.json.util.PropertyFilter
import java.lang.reflect.Field;
import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.Date;
import java.util.Locale;
import java.util.Set;
import net.sf.json.JSONOb ...
跟益达学Solr5之solrconfig.xml配置详解
solrconfig.xml配置文件中包含了很多solr自身配置相关的参数,solrconfig.xml配置文件示例可以从solr的解压目录下找到,如图: 用文本编辑软件打开solrconfig.xml配置,你将会看到以下配置内容:
<?xml version="1.0" encoding="UTF-8" ?>
< ...
crtmpserver配置文件详解
Configuration file配置文件The configuration file is actually a lua script which must contain an object called configuration. This will be read by the server and used to fully configure the server. Besid ...
Extjs Config和Mixins
Extjs 4中,为类型系统引入了Config概念,Config就是配置项的意思,用{configItem1:value1...}表示,在对象构造的时候,会调用this.initConfig(config)将配置项初始化,每个配置项自动生成4个函数:get set reset apply。
Mixins也是新概念,相当于调用Ext.apply(this,other)将other类中的方法 ...
Servlet的一些内置对象和配置参数
1.Servlet的内置对象和JSP的内置对象。
通常的面试题中,会让你描述JSP和Servlet的9大内置对象,大家应该知道JSP其实本身就是一个Servlet,所以他们里面的内置对象是共通的,下面就是这些内置对象的关系和他们的用处。
------------------------------------------------------------
request ...