日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

Spring MVC零配置(全注解)(版本5.0.7)

發(fā)布時間:2025/5/22 javascript 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Spring MVC零配置(全注解)(版本5.0.7) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
// 核心配置類 package spittr.config;import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;public class SpittrWebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer{@Overrideprotected Class<?>[] getRootConfigClasses() {// TODO Auto-generated method stubreturn new Class<?>[] {RootConfig.class};}@Overrideprotected Class<?>[] getServletConfigClasses() {// 指定配置類return new Class<?>[] {WebConfig.class};}/*** 將一個或多個路徑映射到DispatcherServlet上*/@Overrideprotected String[] getServletMappings() {// 將DispatcherServlet映射到“/”return new String[] {"/"};}} package spittr.config;import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import org.springframework.web.servlet.view.InternalResourceViewResolver;@Configuration @EnableWebMvc // 啟用Spring MVC @ComponentScan("spittr.web") // 啟用組件掃描 public class WebConfig implements WebMvcConfigurer {/*** 配置JSP視圖解析器* * @return*/@Beanpublic ViewResolver viewResolver() {InternalResourceViewResolver resolver = new InternalResourceViewResolver();resolver.setPrefix("/WEB-INF/views/");resolver.setSuffix(".jsp");resolver.setExposeContextBeansAsAttributes(true);return resolver;}@Overridepublic void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {configurer.enable();}} package spittr.config;import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.ComponentScan.Filter; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.FilterType; import org.springframework.web.servlet.config.annotation.EnableWebMvc;@Configuration @ComponentScan(basePackages= {"spitter"},excludeFilters= {@Filter(type=FilterType.ANNOTATION, value=EnableWebMvc.class)}) public class RootConfig {} package spittr.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping;@Controller public class HomeController {static {System.out.println("=============HomeController============");}@RequestMapping("/home")public String home() {System.out.println("hellow");return "home";} }

轉(zhuǎn)載于:https://www.cnblogs.com/caoleiCoding/p/9270510.html

總結(jié)

以上是生活随笔為你收集整理的Spring MVC零配置(全注解)(版本5.0.7)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。