Hi I want to autowire boolean value from properties file have referred following link with maps url Spring properties (property-placeholder) autowiring
but I want to auto wire a boolean property, also have referred question Spring Autowire primitive boolean Spring Autowire primitive boolean but that was for bean value and in my case I want to do the same using property value which is dot separated.
${does.it.allow}
// which fails and gives String cannot be cast to boolean
#{does.it.allow}
// this gives no bean/property defined with name does but I have the correct property file and it proves that container is able to load it because of first error.