我发现了link
我想知道在这段代码中如何实现控制器
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="urlMap">
<map>
<entry key="/hello.htm" value-ref="helloController"/>
<entry key="/sayHello*" value-ref="helloController"/>
<entry key="/welcome.html" value-ref="helloController"/>
<entry key="/welcomeUser*" value-ref="helloController"/>
</map>
</property>
</bean>
它显示了handlerMapping的示例。我的问题是,如果我只有一个控制器,我怎么能使用那些handlerMapping映射不同的请求。如果我输入hello.htm url,它会调用helloController
中的哪种方法。另一个也一样。