SpringBoot使用thymeleaf模板

2018-11-18
阅读 2 分钟
4k
SpringBoot开发的WEB项目Contrller如何跳转到前端页面 目前Spring官方已经不推荐使用JSP来开发WEB了,而是推荐使用如下几种模板引擎来开发: Thymeleaf(Spring官方推荐) FreeMarker Velocity Groovy Mustache 据说,最流行的还是FreeMarker和Velocity这两种模板,我们这里用Spring官方推荐的Thymeleaf模板 在创建好Sprin...

读取资源文件

2018-05-23
阅读 2 分钟
2k
获取某个类的位置(编译后的.class文件的位置): {代码...} 获取classpath的位置(在tomcat中完美获取,在weblogic中无法正常获取,在JavaApplication中也能获取): {代码...} 获取classpath的位置(该方法在jdk7以后无效): {代码...}