當前位置:首頁 » 密碼管理 » springmvc訪問html

springmvc訪問html

發布時間: 2023-11-25 22:26:07

❶ Spring MVC 直接訪問 WEB-INF下的靜態頁面怎麼在配置文件中配置,求大神解答

注意配置的時候如下規則

1、頁面jsp(html等)的訪問必須走controller的訪問和跳轉

2、css、js等可以直接通過地址去訪問不需要走後台控制器

3、怎麼處理的,可以配置訪問限制。也就是放開對css、js等靜態資源的訪問,動態資源(.jsp用控制器去訪問),參考連接網頁鏈接

❷ springmvc 配置了跳轉到jsp頁面 怎麼實現跳轉到html頁面

先看controller:
@RequestMapping(value = "/{id}/view", method = RequestMethod.GET, proces = "text/html")
public String getPostByIdHtml( @PathVariable String id) throws IOException {
return "/resources/Post.html";
}

再看配置:
@Configuration
@EnableWebMvc
@EnableTransactionManagement
@ComponentScan({ "com.my.web.api"})
@ImportResource("classpath:db-context.xml")
public class ApiServletConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
}

@Bean
public InternalResourceViewResolver internalResourceViewResolver() {
InternalResourceViewResolver internalResourceViewResolver = new InternalResourceViewResolver();
internalResourceViewResolver.setPrefix("/resources/");
internalResourceViewResolver.setSuffix("*.html");
return internalResourceViewResolver;
}
}

熱點內容
阿里雲伺服器託管合同 發布:2024-11-29 07:46:37 瀏覽:296
linux用戶許可權設置 發布:2024-11-29 07:43:39 瀏覽:270
c語言if函數嵌套 發布:2024-11-29 07:43:35 瀏覽:757
學編程L2 發布:2024-11-29 07:39:58 瀏覽:429
微信如何設置收與付密碼 發布:2024-11-29 07:39:15 瀏覽:541
mysql備份與恢復腳本 發布:2024-11-29 07:39:13 瀏覽:50
在c語言的基本單位是 發布:2024-11-29 07:38:36 瀏覽:792
c語言演算法結構 發布:2024-11-29 07:23:08 瀏覽:222
空氣壓縮呼吸 發布:2024-11-29 07:23:00 瀏覽:56
百望雲伺服器設備編號必填 發布:2024-11-29 07:13:50 瀏覽:33