在Controller层自动装配ServletContext。
@Autowired
ServletContext context;
然后即可在Controller层的方法里获取项目的根路径。
String path = context.getRealPath("/");
在Controller层自动装配ServletContext。
@Autowired
ServletContext context;
然后即可在Controller层的方法里获取项目的根路径。
String path = context.getRealPath("/");