欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Velocity-org.apache.velocity.exception.Resource...

程序员文章站 2024-02-23 14:15:40
...

运行velocity的examples的examples.app_example2,

 public class Example2
{
    public static void main( String args[] )
    {
        try
        {
            Velocity.init();   
         }
        catch(Exception e)
        {
            System.out.println("Problem initializing Velocity : " + e );
            return;
        }

        VelocityContext context = new VelocityContext();

        context.put("name", "Velocity");
        context.put("project", "Jakarta");

        StringWriter w = new StringWriter();

        try
        {
            Velocity.mergeTemplate("example2.vm", "ISO-8859-1", context, w );
        }
        catch (Exception e )
        {
            System.out.println("Problem merging template : " + e );
            e.printStackTrace();
        }

        System.out.println(" template : " + w );

        String s = "We are using $project $name to render this.";
        w = new StringWriter();

        try
        {
            Velocity.evaluate( context, w, "mystring", s );
        }
        catch( ParseErrorException pee )
        {
            System.out.println("ParseErrorException : " + pee );
        }
        catch( MethodInvocationException mee )
        {
            System.out.println("MethodInvocationException : " + mee );
        }
        catch( Exception e )
        {
            System.out.println("Exception : " + e );
        }

        System.out.println(" string : " + w );
    }
}

 

出现错误: org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'example2.vm'

修正:

Velocity.init();

为:

Properties properties = new Properties();  
            String basePath = "src/examples/app_example2";
            // 设置模板的路径  
            properties.setProperty(Velocity.FILE_RESOURCE_LOADER_PATH, basePath);
            Velocity.init(properties);


转载于:https://my.oschina.net/foggy/blog/64714