Created by zl on 2019/03/01 singleton模式
| 7 | * singleton模式 |
| 8 | */ |
| 9 | public class WebApplication { |
| 10 | private static ServletContext servletContext; |
| 11 | |
| 12 | static { |
| 13 | servletContext = new ServletContext(); |
| 14 | } |
| 15 | |
| 16 | public static ServletContext getServletContext() { |
| 17 | return servletContext; |
| 18 | } |
| 19 | |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected