Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Last active April 28, 2020 07:21
Show Gist options
  • Save CheolhoJeon/88d5224dc8cdb48ba61e7263ed2885b2 to your computer and use it in GitHub Desktop.
Save CheolhoJeon/88d5224dc8cdb48ba61e7263ed2885b2 to your computer and use it in GitHub Desktop.
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>spring.profiles.active</param-name>
<param-value>dev</param-value>
</init-param>
<init-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
config.DsDevConfig
config.DsRealConfig
config.MemberConfig
config.MvcConfig
config.ControllerConfig
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment