EJB3 in Action wrote:Defining O/R mapping using fields or instance variables of entity is known as field-based access, and using O/R mapping with properties is known as property-based access.
Deepthi Tirunahari wrote:The spec says
To support this case, the container must only inject a value for the environment entry if the application
assembler or deployer has specified a value to override the default value.
Can anybody explain the above statement. Does this mean that we should always specify <env-entry-value> in the dd even after we have given a default value in @Resource int maxExemptions = 4;. But that doesn't make sense.