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.
您好,我有一个程序可以在线连接到数据库并从表中访问数据等。告诉我的朋友先打开 netbeans 并在服务中连接到数据库时,一切正常。我需要做的是让所有这些都自动化,比如在 jar 中运行或代码将连接的东西。
我用于 Connection 的是 'Connection con = ' blah blah 并且这个连接但我必须已经连接到服务中的数据库?
您可以将 Connection 变量设为静态。这使得在类加载时而不是在请求处理时建立连接。