会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 133660个问题
C++特训班/第一阶段:基础篇/基础篇 26836楼
JAVA 全系列/第一阶段:AI驱动的JAVA编程/面向对象详解和JVM底层内存分析 26838楼

package com.bjsxt;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ResourceBundle;

/**
 * jdbc工具类
 * @author Administrator
 *
 */
public class JdbcUtil2 {
	private static String driver;
	private static String jdbcUrl;
	private static String username;
	private static String userpassword;
	static{
		//读取Properties文件
		ResourceBundle bundle = ResourceBundle.getBundle("jdbc");
		driver = bundle.getString("driver");
		jdbcUrl= bundle.getString("jdbcUrl");
		username = bundle.getString("username");
		userpassword = bundle.getString("userpassword");
		try {
			Class.forName(driver);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		}
	}

	//获取Connection对象
	public static Connection getConnection(){
		Connection conn = null;
		try {
		 conn =	DriverManager.getConnection(jdbcUrl, username, userpassword);
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return conn;
		
	}
	//关闭Statement
	public static void closeStatement(Statement state){
			try {
				if(state != null){
					state.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
	}
	//关闭Connection
	public static void closeConnection(Connection conn){
		try {
			if(conn != null){
				conn.close();
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
	//關閉資源
	public static void closeResource(Statement state,Connection conn,ResultSet rs){
		closeStatement(state);
		closeConnection(conn);
		closeResultSet(rs);
	}
	//关闭ResultSet连接
	public static void closeResultSet(ResultSet rs){
		try {
			if(rs != null){
				rs.close();
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
package com.bjsxt;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;



public class JdbcTest2 {
	//向Department表中添加一条数据
	public void insertDepartments(String department_name,int location_id) {
			Connection conn = null;
			Statement state = null;
		try {
			conn = JdbcUtil2.getConnection();
			String sql="insert into departments values(default,'"+department_name+"',"+location_id+")";
			state = conn.createStatement();
			int flag = state.executeUpdate(sql);
			System.out.println(flag);
		} catch (Exception e) {
			e.printStackTrace();
		}finally {
			JdbcUtil2.closeResource(state, conn,null);
			}
			
		}
	
	//更新departments表中的deoartment_id为5的数据,将部门名称修改为教学部,location_id修改为5
	public void updateDempartments(String department_name,int location_id,int department_id) {
		Connection conn = null;
		Statement state = null;
		try {
			conn = JdbcUtil2.getConnection();
			state = conn.createStatement();
			String sql = "update departments d set d.department_name = '"+department_name+"',d.location_id = "+location_id+" where d.department_id = "+department_id;
			int flag = state.executeUpdate(sql);
			System.out.println(flag);
		}catch(Exception e) {
			e.printStackTrace();
		}finally{
			JdbcUtil2.closeResource(state,conn,null);
		}
	}
	//查询Departments表中部门ID为6的部门信息
	public void selectDepartmentsById(int departmentId) {
		Connection conn = null;
		Statement state = null;
		ResultSet rs = null;
		try {
			conn = JdbcUtil2.getConnection();
			state = conn.createStatement();
			String sql = "select * from departments d where d.department_id = "+departmentId;
			//执行查询返回结果
			rs=state.executeQuery(sql);
			while(rs.next()) {
				System.out.println(rs.getInt("department_id")+" "+rs.getString("department_name")+" "+rs.getInt(3));
			}
		}catch(Exception e) {
			e.printStackTrace();
		}finally {
			JdbcUtil2.closeResource(state,conn,rs);
		}
	}
	public static void main(String[] args) {
		JdbcTest2 test2 = new JdbcTest2();
		//test2.insertDepartments("教学部",9);
		//test2.updateDempartments("工程部",7,5);
		test2.selectDepartmentsById(6);

	}

}




麻烦老师帮忙看一下这个是什么问题









JAVA 全系列/第四阶段:数据库与AI协同技术实战/JDBC技术(旧) 26839楼
JAVA 全系列/第三阶段:智能时代的AI开发工具/AI 编程助手Cursor实战 26840楼
JAVA 全系列/第二阶段:JAVA 基础深化和提高/多线程技术(旧) 26842楼

老师,我在使用Java api 创建连接Zookeeper时idea出现以下错误,在网上找了很多方法都无法解决,麻烦您帮我看一下,甚是感谢!


错误提示:

问题截图.gif


main方法所在类:

package com.zyt;

import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;

import java.io.IOException;

public class ZookeeperDemo implements Watcher {

    public static void main(String[] args) throws IOException {

        ZooKeeper zooKeeper = new ZooKeeper("192.168.242.128:2181,192.168.242.128:2182,192.168.242.128:2183",15000, new ZookeeperDemo());

        //zooKeeper.create("");
    }

    @Override
    public void process(WatchedEvent event) {

        if(event.getState() == Event.KeeperState.SyncConnected) {
            System.out.println("成功连接!");
        }
    }
}


pom.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.zyt</groupId>
    <artifactId>ZookeeperDemo</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
            <version>3.6.0</version>
        </dependency>
    </dependencies>

</project>


setting.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?>


<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
 

   <!--1、配置本地仓库的标签-->
   <localRepository>I:\IntelliJ Idea\localRepository</localRepository>

  <pluginGroups>
   
  </pluginGroups>

  
  <proxies>
  
  </proxies>

  
  <servers>
   
      <!--2、配置私服中仓库的访问-->
      <server>
         <id>releases</id>
         <username>deployment</username>
         <password>deployment123</password>
      </server>
      <server>
         <id>snapshots</id>
         <username>deployment</username>
         <password>deployment123</password>
      </server>

  </servers>

 
  <mirrors>
    
      <!--如果不配置私服,镜像仓库的配置方式-->
      <!--<mirror>
      <id>nexus-aliyun</id>
      <name>Nexus aliyun</name>
      <mirrorOf>central</mirrorOf>
      <url>http://maven.aliyun.com/nexus/content/groups/public</url>
      </mirror>-->
  </mirrors>

  <profiles>
    
     <!--3、Maven中插件的配置-->
     <profile>
        <!--配置私服的相关属性-->
        <id>sxt</id>
        <activation>
           <activeByDefault>false </activeByDefault>
           <jdk>1.8</jdk>
        </activation>
        <repositories>
           <repository>
              <id>public</id>
              <!--配置私服中仓库组的地址-->
              <url>http://192.168.242.128:8081/nexus/content/groups/public/</url>
              <releases>
                 <enabled>true</enabled>
              </releases>
              <snapshots>
                 <enabled>true</enabled>
              </snapshots>
           </repository>
        </repositories>
        <pluginRepositories>
           <pluginRepository>
              <id>public</id>
              <url>http://192.168.242.128:8081/nexus/content/groups/public/</url>
              <releases>
                 <enabled>true</enabled>
              </releases>
              <snapshots>
                 <enabled>true</enabled>
              </snapshots>
           </pluginRepository>
        </pluginRepositories>
     </profile>
    
      <!--Maven工程中jdk版本的配置-->
      <profile>
         <id>jdk1.8</id>
         <activation>
            <activeByDefault>true</activeByDefault>
            <jdk>1.8</jdk>
         </activation>
         <properties>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
            <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
         </properties>
      </profile>

</profiles>

   <activeProfiles>
      <!--<activeProfile>jdk1.8</activeProfile>-->
      <activeProfile>sxt</activeProfile>
   </activeProfiles>
 
</settings>


项目目录截图:


JAVA 全系列/(旧的隐藏)第七阶段:JAVA 高级技术/Zookeeper 26843楼
Python 全系列/第八阶段:Vue框架/vue框架 26844楼
JAVA 全系列/第四阶段:数据库与AI协同技术实战/JDBC技术(旧) 26845楼
JAVA 全系列/第四阶段:数据库与AI协同技术实战/JDBC技术 26848楼
Python 全系列/第六阶段:数据库与AI协同技术实战/mysql介绍与环境安装 26849楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园
网站维护:百战汇智(北京)科技有限公司
京公网安备 11011402011233号    京ICP备18060230号-3    营业执照    经营许可证:京B2-20212637