Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <div th:object="${AppPortModel.Status}" th:if="${AppPortModel.Status == 'CRITICAL'}">
  2. <h3>
  3. MONITORING
  4. </h3>
  5.  
  6. <table id ="apCritTable">
  7. <thead>
  8. <tr>
  9. <th> Status </th>
  10. <th> HostName </th>
  11. <th> Port Name</th>
  12. <th> Port Listening Count </th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr th:each="AppPortModel, iterStat : ${showap}" th:if="${AppPortModel.Status == 'CRITICAL'}">
  17. <td th:text ="${AppPortModel.Status}"></td>
  18. <td th:text="${AppPortModel.host}">${AppPortModel.host}</td>
  19. <td th:text="${AppPortModel.portOwner}"></td>
  20. <td th:text="${AppPortModel.count}"></td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. </div>
  25.  
  26. <div th:object="${AppPortModel.Status}" th:if="${AppPortModel.Status == 'CRITICAL'}">
  27.  
  28. org.springframework.expression.spel.SpelEvaluationException: EL1007E:(pos 0): Property or field 'Status' cannot be found on null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement