当前位置: 首页 > wzjs >正文

手机网站Comdw网页代码

手机网站Com,dw网页代码,什么是精准营销,建立平台还是搭建平台目录 前言实现代码 前言 提取变量用正则也能做,但我看另一个项目用freemarker提取了模板的变量,就想着Velocity是不是也能做,搜了一圈没搜到,于是去debug了Velocity源码,发现变量最终会存在Node数组里。 实现代码 …

目录

  • 前言
  • 实现代码

前言

  • 提取变量用正则也能做,但我看另一个项目用freemarker提取了模板的变量,就想着Velocity是不是也能做,搜了一圈没搜到,于是去debug了Velocity源码,发现变量最终会存在Node数组里。
    在这里插入图片描述

实现代码

  • 我只要能获取到Node [] children数组对象的数据就可以了。
import cn.hutool.core.util.StrUtil;
import cn.hutool.extra.template.Template;
import cn.hutool.extra.template.engine.velocity.VelocityEngine;
import cn.hutool.extra.template.engine.velocity.VelocityTemplate;
import com.zbkj.common.constants.Constants;
import org.apache.velocity.runtime.parser.node.ASTIdentifier;
import org.apache.velocity.runtime.parser.node.ASTReference;
import org.apache.velocity.runtime.parser.node.ASTprocess;
import org.apache.velocity.runtime.parser.node.Node;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.ObjectUtils;
import org.springframework.util.ReflectionUtils;import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;/*** @author zzq* @description Velocity工具类* @date 6/12/2025 14:12:44*/
public class VelocityUtil {private static final Logger log = LoggerFactory.getLogger(VelocityUtil.class);private final static String RAW_TEMPLATE_FIELD = "rawTemplate";/*** 从Velocity模板字符串中提取变量名** @param templateStr 模板字符串* @return 变量名列表* @Date 2025-06-12*/public static Set<String> extractVariables(String templateStr) {// 实现从模板字符串中提取变量名的逻辑Set<String> variables = new HashSet<>(Constants.NUM_TWENTY);VelocityEngine engine = new VelocityEngine();Template template = engine.getTemplate(templateStr);Field rawTemplateField = ReflectionUtils.findField(VelocityTemplate.class, RAW_TEMPLATE_FIELD);ReflectionUtils.makeAccessible(rawTemplateField);org.apache.velocity.Template rawTemplate = (org.apache.velocity.Template) ReflectionUtils.getField(rawTemplateField, template);ASTprocess rawTemplateData = (ASTprocess) rawTemplate.getData();if (!ObjectUtils.isEmpty(rawTemplateData)) {int nodeLength = rawTemplateData.jjtGetNumChildren();for (int i = 0; i < nodeLength; i++) {StringBuilder sb = new StringBuilder();// 第一级节点Node child = rawTemplateData.jjtGetChild(i);if (child instanceof ASTReference) {ASTReference reference = (ASTReference) child;String referenceText = reference.getRootString();sb.append(referenceText);
//                    log.info("Reference: " + referenceText);int nodeGrandLen = reference.jjtGetNumChildren();// 子孙节点for (int j = 0; j < nodeGrandLen; j++) {Node grandChild = reference.jjtGetChild(j);if (grandChild instanceof ASTIdentifier) {ASTIdentifier identifier = (ASTIdentifier) grandChild;sb.append(StrUtil.DOT + identifier.getIdentifier());
//                            log.info("Identifier: " + identifier.getIdentifier());}}variables.add(sb.toString());}}}return variables;}public static void main(String[] args) {// 示例数据String templateData = "你是${name} xxx ${java.lang.String.XTEST} ${java.lang} ${STRING}";Set<String> extractedVariables = extractVariables(templateData);log.info("Extracted Variables: " + extractedVariables);}
}
  • 运行效果
    在这里插入图片描述

  • 本身项目是Spring Boot,其他程序依赖

<dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>4.5.7</version>
</dependency><!-- velocity代码生成使用模板 -->
<dependency><groupId>org.apache.velocity</groupId><artifactId>velocity-engine-core</artifactId><version>2.3</version>
</dependency>
http://www.dtcms.com/wzjs/544690.html

相关文章:

  • 无锡网站建设唯唯网络大型网站的设计
  • 泉州网站建设哪家公司好凡科建站平台
  • 重庆放心seo整站优化网站建设的策划方案
  • 龙陵网站建设seo推广培训班
  • 上海公司网站建设方案阳江网络问政平台新闻发布会
  • 打电话沟通做网站wordpress怎么设置派送中
  • 运城市住房与城乡建设厅网站淘宝网店的seo主要是
  • 四川德立胜建设工程有限公司网站公众平台登录官网
  • 锒川市住房和城乡建设局网站公告庄浪县县住房建设局网站
  • 义乌网站建设推广专家wordpress 部署
  • 学做静态网站网上购物系统源码
  • 网站 建设开发合同桂林北站停车场收费标准
  • 网站联盟关键词优化方法
  • 网站建设是固定资产吗wordpress 用户前台
  • 做淘宝有没有店小秘类型的网站做户型图的网站
  • 网站推广维护app界面生成器
  • 在云服务器上搭建网站惠州个人做网站联系人
  • 网站底部导航设置传统的网站开发模式
  • 合肥网站建设公司 千鸟装修房子的效果图 三室二厅二卫
  • 网站建设首选公司seo外包公司排名
  • 电子商城网站开发流程网站建设设计报告
  • 微网站开发合同wordpress表格显示图片
  • 免费建站网站seo怎么样购买网站空间
  • 做网站需要注意的点赶集网网站建设分析
  • 如何免费制作企业网站国内消息最新新闻
  • 教育视频培训网站建设网络科技公司取名
  • 网站建设项目进度计划书银川专业做网站的公司
  • 北京市住房建设官网站合肥市建设工程信息网官网
  • 雏鸟app网站推广网页微博版
  • 二级医院做网站wordpress编辑模板