摘要: Properties 在java目录下新建properties在resources目录下新建properties发现:都被打包到了同一个路径下:classes,我们俗称这个路径为classpath:思路:需要一个文件流 username=root12312password=zxczxczxc12 p 阅读全文
posted @ 2022-02-02 20:55 stdxxd 阅读(49) 评论(0) 推荐(0)
摘要: ServletContextweb容器在启动的时候,它会为每个web程序都创建一个对应的ServletContext对象,它代表了当前的web应用; 1、共享数据我在这个Servlet中保存的数据,可以在另外一个servlet中拿到; public class HelloServlet extend 阅读全文
posted @ 2022-02-02 20:54 stdxxd 阅读(50) 评论(0) 推荐(0)