是否有人知道如何从静态目录创建映射文件以响应Spring Boot中的某个URL?
例如,我在Spring Boot结构中的目录/资源中有文件
resources/static/html/index.html
我想让它回复网址
/index
没有目录路径,没有.html postfix
答案 0 :(得分:1)
文件internal
作为某个目录的默认HTML文件提供。因此,如果您想通过[assembly: InternalsVisibleTo("MyTestAssemblyName")]
网址投放,请将其放入index.html
。
答案 1 :(得分:0)
随着我的研究,只有当您使用像Thymeleaf这样的模板引擎时才能进行网址映射,然后应用程序将变为上下文感知。
答案 2 :(得分:-1)
使用Thymeleaf,然后将.html文件添加到resources / templates /,它们将自动被发现。