mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 17:22:13 +00:00
20 lines
728 B
XML
Executable File
20 lines
728 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
|
|
|
<bean name="/listAccounts.html" class="bigbank.web.ListAccounts">
|
|
<constructor-arg ref="bankService"/>
|
|
</bean>
|
|
|
|
<bean name="/post.html" class="bigbank.web.PostAccounts">
|
|
<constructor-arg ref="bankService"/>
|
|
</bean>
|
|
|
|
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
|
|
<property name="prefix" value="/WEB-INF/jsp/"/>
|
|
<property name="suffix" value=".jsp"/>
|
|
</bean>
|
|
|
|
</beans> |