JAVA org.springframework.stereotype.Service这个类是干什么用的?_百...
发布网友
发布时间:2023-12-30 11:11
我来回答
共1个回答
热心网友
时间:2024-08-14 22:44
annotation:翻译过来就是注释.注解!
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />这个不是识别注解类.而是将Controller的注解排除掉.
这个在springmvc中都要配置的.主要是不配置会影响事物的管理.
springmvc的service和controller不在一个context层.又叫上下文.这个上下文吧.这些年我也没整明白到底该怎么说.反正就是它们两个不一样.
要是把
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
这段加上,扫描时候就找不到service了...
大概就这意思吧.