Skip to content

Instantly share code, notes, and snippets.

@zihluwang
Created May 30, 2022 15:56
Show Gist options
  • Save zihluwang/b4f598827f2010d8f7cc59ebe72f830b to your computer and use it in GitHub Desktop.
Save zihluwang/b4f598827f2010d8f7cc59ebe72f830b to your computer and use it in GitHub Desktop.
SSM Spring Config
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
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">
<context:component-scan base-package="cn.vorbote.demo" use-default-filters="false">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment