1# Licensed to the Apache Software Foundation (ASF) under one 2# or more contributor license agreements. See the NOTICE file 3# distributed with this work for additional information 4# regarding copyright ownership. The ASF licenses this file 5# to you under the Apache License, Version 2.0 (the 6# "License"); you may not use this file except in compliance 7# with the License. You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, 12# software distributed under the License is distributed on an 13# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14# KIND, either express or implied. See the License for the 15# specific language governing permissions and limitations 16# under the License. 1701 = 01 1802 = 02 1903 = 03 2004 = 04 2105 = 05 2206 = 06 2307 = 07 2408 = 08 2509 = 09 2610 = 10 27 28# --------------------------------------------------------- 29# Test CSV properties 30# --------------------------------------------------------- 31resource.loader = file, classpath, datasource 32 33file.resource.loader.class = FileResourceLoader 34file.resource.loader.description = File Resource Loader 35file.resource.loader.path = /path01 36file.resource.loader.path = /path02 37file.resource.loader.path = /path03 38 39classpath.resource.loader.class = ClasspathResourceLoader 40classpath.resource.loader.description = Classpath Resource Loader 41 42datasource.resource.loader.class = DataSourceResourceLoader 43datasource.resource.loader.description = Datasource Resource Loader 44 45# --------------------------------------------------------- 46# Test multi same value keys 47# --------------------------------------------------------- 48logger.type = file 49logger.type = console 50logger.type = db 51 52# --------------------------------------------------------- 53# Testing String retrieval 54# --------------------------------------------------------- 55config.string.value = string 56 57# --------------------------------------------------------- 58# Testing boolean retrieval 59# --------------------------------------------------------- 60config.boolean.value = true 61 62# --------------------------------------------------------- 63# Testing byte retrieval 64# --------------------------------------------------------- 65config.byte.value = 1 66 67# --------------------------------------------------------- 68# Testing short retrieval 69# --------------------------------------------------------- 70config.short.value = 1 71 72# --------------------------------------------------------- 73# Testing integer retrieval 74# --------------------------------------------------------- 75config.int.value = 30000 76 77# --------------------------------------------------------- 78# Testing long retrieval 79# --------------------------------------------------------- 80config.long.value = 1000000 81 82# --------------------------------------------------------- 83# Testing float retrieval 84# --------------------------------------------------------- 85config.float.value = 3.14 86 87# --------------------------------------------------------- 88# Testing double retrieval 89# --------------------------------------------------------- 90config.double.value = 3.14159265358793 91 92# --------------------------------------------------------- 93# Testing escaped commas 94# --------------------------------------------------------- 95escape.comma1 = foo\, 96escape.comma2 = bar\,lala,woogie\,,bjork! 97 98include = include1.properties 99include = ./include2.properties 100