38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
|
|
xmlns:cache="http://www.springframework.org/schema/cache"
|
|
xsi:schemaLocation="
|
|
http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context.xsd
|
|
http://www.springframework.org/schema/mvc
|
|
http://www.springframework.org/schema/mvc/spring-mvc.xsd
|
|
http://www.springframework.org/schema/cache
|
|
http://www.springframework.org/schema/cache/spring-cache.xsd">
|
|
|
|
|
|
|
|
<bean
|
|
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
|
|
<property name="prefix" value="/" />
|
|
<property name="suffix" value=".jsp" />
|
|
</bean>
|
|
|
|
|
|
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
|
|
<property name="mappings">
|
|
<value>
|
|
/simpleUrlWelcome=welcome
|
|
/*/simpleUrlWelcome=welcome
|
|
</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="welcome" class="com.baeldung.WelcomeController" />
|
|
|
|
|
|
|
|
</beans> |