如何获得,而不形成豆在JSP中的静态方法值的春天?(How to get static method

2019-09-28 08:54发布

下面以字节KB转换代码的代码静态回报type.So我怎样才能不建立在豆许多JSP的值。

public static double bytesToKB(int bytes){
  return (double)bytes/1024;
}

Answer 1:

这个怎么样?

<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>

<spring:eval expression="T(com.abc.xyz.YourClassName).bytesToKB(2560)" var="result"></spring:eval>
Spring Eval result: <c:out value="${result }"/>


文章来源: How to get static method value in jsp without creation bean in Spring?