Servlet的初始化参数只能在Servlet的()方法中获取。
A: init()
B: doPost()
C: doGet()
D: destroy()
A: init()
B: doPost()
C: doGet()
D: destroy()
举一反三
- 下列属于Servlet的方法有() A: doGet() B: doPost C: init() D: destroy()
- 当访问一个servlet时,以下servlet中哪个方法先被执行?() A: Destroy() B: doGet() C: doPost() D: init()
- servlet需要的参数,一般在哪个方法中初始化() A: init B: doGet C: doPost D: Service
- 如果配置一个servlet需要使用的参数,最好在哪个方法中() A: doPost B: destroy C: doGet D: service E: init
- 不能在servlet的doPost方法中调用doGet方法