I need some JSF 2.1.29 advise. I have the following using of the bean's property:
#{someBean.someProperty}
Where #{someBean.someProperty}
returns 7 8
(note the number of spaces between the digits). And in the browser it's displayed as just 7 8
. When I replace those spaces with
, then they are displayed as is:
7 8
How can I get to actually display as 7 8
?