1:servlet与controller的区别。
servlet需要在web.xml中配置,告诉配置文件什么时候指向servlet。
controller只需要通过设置requestMapping便可以设置url直接访问到controller中。
2:==与equals的区别。
==表示是否是同一个,equals表示是否相同。底层也是一个==。
3:CharacterEncodingFilter的作用?
用于设置当前台页面向后天传输数据的时候,为了避免前台传递的数据到controller层之后出现乱码,需要设置乱码处理的方式。
4:<error-page>作用
可以用来设置当出现
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/jsp/uncaughtException.jsp</location>
404、500、400错误后通过location进行跳转到响应的页面
5:@configuration
@Configuration标注在类上,相当于把该类作为spring的xml配置文件中的<beans>
,作用为:配置spring容器(应用上下文)
6:cn.com.taiji.manage.manager.common.Finals.WSQ_SHIJU与直接用Final调用
7:<util:properties id="db" location="classpath:config/db.properties"/>作用?
相当于给util里面的location这个properties文件设置一个db名字
8:@Component、@Repository、@Service、@Controller区别
1、@controller 控制器(注入服务)
2、@service 服务(注入dao)
3、@repository dao(实现dao访问)
4、@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id=”” class=””/>)
9:applicationContext的启动方式?