zoukankan      html  css  js  c++  java
  • freemarker自己定义标签报错(二)

    freemarker自己定义标签


    1、错误描写叙述

    freemarker.core.ParseException: Unexpected end of file reached.
    
    	at freemarker.core.FMParser.generateParseException(FMParser.java:4702)
    	at freemarker.core.FMParser.jj_consume_token(FMParser.java:4573)
    	at freemarker.core.FMParser.UnifiedMacroTransform(FMParser.java:1978)
    	at freemarker.core.FMParser.FreemarkerDirective(FMParser.java:2404)
    	at freemarker.core.FMParser.Content(FMParser.java:2623)
    	at freemarker.core.FMParser.OptionalBlock(FMParser.java:2791)
    	at freemarker.core.FMParser.Root(FMParser.java:2963)
    	at freemarker.template.Template.<init>(Template.java:171)
    	at freemarker.cache.TemplateCache.loadTemplate(TemplateCache.java:447)
    	at freemarker.cache.TemplateCache.getTemplate(TemplateCache.java:360)
    	at freemarker.cache.TemplateCache.getTemplate(TemplateCache.java:235)
    	at freemarker.template.Configuration.getTemplate(Configuration.java:578)
    	at freemarker.template.Configuration.getTemplate(Configuration.java:543)
    	at com.you.freemarker.FreemarkerTemplate.getTemplate(FreemarkerTemplate.java:52)
    	at com.you.freemarker.FreemarkerTemplate.printFtl(FreemarkerTemplate.java:76)
    	at com.you.test.freemarker.FreemarkerTest.studentPrint(FreemarkerTest.java:217)
    	at com.you.test.freemarker.FreemarkerTest.testMyself(FreemarkerTest.java:204)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
    	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
    	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
    	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
    	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
    	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
    	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
    	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
    	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
    	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
    	at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
    	at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    	at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
    

    2、错误原因

    <html>
      <head>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <title>freemarker自己定义标签</title>
    
      </head>
      
      <body>
         <#--freemarker自己定义标签-->
    	 <#macro write>
    	     repeat("张三丰",3)
    	 </#macro>
    	 
    	 <@write>
      </body>
    </html>

       <@write>缺少关闭符号


    3、解决的方法

         将“<@write>”改为“<@write/>”

  • 相关阅读:
    Spring Boot启动命令参数详解及源码分析
    面试题-关于Java线程池一篇文章就够了
    Spring Boot中@ConditionalOnProperty使用详解
    Spring Boot通过ImportBeanDefinitionRegistrar动态注入Bean
    Spring Boot 注解之ObjectProvider源码追踪
    软件从业者不可不读的一本书
    SpringBoot之DispatcherServlet详解及源码解析
    书终于交稿了,聊聊写技术书这件事
    Python IDE:pycharm
    python安装
  • 原文地址:https://www.cnblogs.com/liguangsunls/p/6691474.html
Copyright © 2011-2022 走看看