사용자 정의 EL 표현 식 생 성 및 사용
클래스 이름 은 Public 이 고 방법 은 Public static 로 정의 합 니 다.
package www.el;
import java.math.BigDecimal;
import java.math.MathContext;
public class Common {
//定义精度值
public static final MathContext math = new MathContext(2);
public static Double add(Double a, Double c) {
BigDecimal ba = new BigDecimal(a, math);
BigDecimal bc = new BigDecimal(c, math);
ba = ba.add(bc);
return ba.doubleValue();
}
}
tled 프로필 의 설정 -> 은 WEB - INF 와 같은 등급 의 위치 에 놓 여 있 습 니 다.
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
version="2.0">
<tlib-version>1.0</tlib-version>
<sort-name>common</sort-name>
<uri>/common</uri>
<function>
<description>add x and y</description>
<name>add</name>
<function-class>www.el.Common</function-class>
<function-signature>
double add(java.lang.Double,java.lang.Double)
</function-signature>
</function>
</taglib>
jsp 호출:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="/WEB-INF/common.tld" prefix="com"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
${com:add(2.1,5.2)}
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.