is this the appropriate way to make a controller only accept a POST?
also is there a way to make it so that all controllers by default only accept POST so that i dont have to configure this property for each? i'm extending abstractcontroller. thanks.Code:<bean name="/hello.htm" class="org.web.InventoryController" > <property name="supportedMethods" value="POST" /> </bean>


Reply With Quote