Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以更改 servlet 的 init() 方法的名称吗?我的意思是说生活应该是- xyz()-service()-destroy() 而不是 init()-service()-destroy()
No.init()是在 servlet 基类中定义的方法 - 如果您使用不同的方法名称,您将不会覆盖现有方法。
init()
您当然可以编写一个init()只调用xyz()的方法 - 并在所有 servlet 使用的基类中这样做。不过,这似乎不是一个好主意——你为什么要首先这样做?
xyz()