参与了西门子的java实习生面试
1.自我介绍一下,这基本是所有面试的标配
2.介绍一下你用过的设计模式
单例模式,工厂模式,
3.单例模式写一下
我竟忘了加static,罪过
4.写一个快速排序
我就讲了一下思路
5.jsp有哪些tag,哪些内置对象
Out
request
response
pageContextà用的很少
session
application
configà用的很少
exception
Pageà用的很少
6.servlet的工作流程,也可说是生命周期
3生命全过程:
加载 ClassLoader
实例化 new
初始化 init(ServletConfig)
处理请求 servicedoGet doPost
退出服务 destroy()
3只有一个对象
3API中的过程:
init()//只执行一次,第一次初始化的时候
publicvoid init(ServletConfig config)throws
ServletException
service()
public void service(ServletRequest req,
ServletResponse res)throws ServletException, java.io.IOException
destroy()//webapp 退出的时候
publicvoid destroy()
时间: 2024-11-07 02:06:23