Java – compare strings to JSTL
                                        
                    •
                    Java                                    
                I have two strings that I need to compare, but even if they have the same value or different, it always enters the statement
<c:when test="#{bean.name1 != bean.name2}">
     fields that are supposed to appear _only_ when name1 is different from name2
</c:when>
Solution
The problem is that you may not be packaged in the selection label
If you have:
<c:choose>
    <c:when test="${bean.name1 != bean.name2}">
        fields that are supposed to appear _only_ when name1 is different from name2
    </c:when>
</c:choose>
It will work
                            The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
                        
                                            
                        THE END
                    
                    
                    
                                                        二维码
                        
                        
                                                
                        