SpingMvc学习笔记

本文主要记录一些比较的零散的东西

  
      springMVC
      
         org.springframework.web.servlet.DispatcherServlet
      
      
        contextConfigLocation
        classpath:springMVC-servlet.xml
     
     1
   

这里的classpath路径指的是EB-INF/classes的目录


  • 通过spring注解创建的Bean,默认是单例模式
    如果需要多例模式用如下方式:
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public class HelloService {
}
或者
@Scope("prototype")
public class HelloService {
}

你可能感兴趣的:(SpingMvc学习笔记)