search

Home  >  Q&A  >  body text

java - 使用velocity报错

为什么报这个错?


2016-12-04 19:29:29,752 ERROR [http-nio-8080-exec-5] org.apache.velocity - ResourceManager : unable to find resource '/user/logintrack.json.vm' in any resource loader.
2016-12-04 19:30:40,527 ERROR [http-nio-8080-exec-4] org.apache.velocity - ResourceManager : unable to find resource '/user/useraudit.json.vm' in any resource loader.
2016-12-04 19:30:44,208 ERROR [http-nio-8080-exec-7] org.apache.velocity - ResourceManager : unable to find resource '/user/useredit.json.vm' in any resource loader.
2016-12-04 19:30:49,472 ERROR [http-nio-8080-exec-6] org.apache.velocity - ResourceManager : unable to find resource '/user/reset.json.vm' in any resource loader.
2016-12-04 19:30:50,637 ERROR [http-nio-8080-exec-8] org.apache.velocity - ResourceManager : unable to find resource '/user/userlogin.json.vm' in any resource loader.
PHP中文网PHP中文网2818 days ago708

reply all(3)I'll reply

  • 怪我咯

    怪我咯2017-04-18 10:29:03

    Have you configured the resource?

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/mystatic/**")
                .addResourceLocations("classpath:/mystatic/");
    }

    reply
    0
  • 怪我咯

    怪我咯2017-04-18 10:29:03

    After configuration, the front-end returns 200ok, and the back-end will print an error

    reply
    0
  • 黄舟

    黄舟2017-04-18 10:29:03

    To configure resources.
    The simplest thing is to put the velocity file into src/main/resources/templates, and the template file suffix is ​​.vm. Follow springboot default settings

    reply
    0
  • Cancelreply