问题
我将我的java程序连接到mysql,但每次mysql容器的ip地址都会继续改变。如果它改变了,我必须在我的java程序中更新该ip地址以进行连接。(我在java程序中提到172.17.0.2作为mysql容器ip)。
下面是我简单的jdbc java程序
import java.sql.*;
import java.sql.Connection;
import java.lang.*;
public class Sample
{
public static void main(String[] args)
{
Connection conn = null;
Statement stmt = null;
String sql= "select * from student1;"; //insert into student1 values(2,'kalam');
try
{
Class.forName("com.mysql.jdbc.Driver");
}
catch(ClassNotFoundException e)
{
System.out.println(e);
}
try{
conn = DriverManager.getConnection("jdbc:mysql://172.17.0.2:3306/university", "root", "root");
stmt = conn.createStatement();
//stmt.execute(sql);
ResultSet rs= stmt.executeQuery(sql);
while(rs.next())
{
System.out.println(rs.getInt(1)+" "+rs.getString(2));
}
System.out.println("value inserted");
}
catch(Exception e)
{
System.out.println(e+"driver man");
}
finally
{
try{
if(stmt!=null)
stmt.close();
if(conn!=null)
conn.close();
}
catch(SQLException e)
{
System.out.println(" conn problem");
e.printStackTrace();
}
}
}
}
以下是我的docker-compose
mysql:
image: mysqlrep
container_name: mysqlcompose
environment:
- MYSQL_ROOT_PASSWORD= root
ports:
- "0.0.0.0:3306:3306"
command: bash -c "/etc/init.d/mysql start && cd /var/lib/mysql && mysql -u root && sleep 10"
java:
image: java:9
container_name: javacompose
links:
- mysql
command: bash -c "javac /compose/Sample.java && java -cp "./compose:./compose/mysql-connector-java-5.1.5-bin.jar" Sample"
volumes:
- ~/compose:/compose
我在docker compose中的mysql服务中使用我自己的mysqlrep映像。(我使用dockerfile构建mysqlrep映像,其中包含mysql-server,我创建了我的数据库大学,名为student1的表,通过我的插入值。 sql文件)。
现在我必须为mysql容器设置固定IP地址,这样我就可以在我的java程序中提供连接(bcz它将任务减少到我的客户端)。 我该怎么设置呢?
注意:
我在Windows 7上使用Docker工具箱
docker version:
客户端版本:1.11.1,Os / Arch:windows / amd64
服务器版本:1.11.2,Os / Arch:linux / amd64
docker-compose版本:1.7.1
请建议......
答案 0 :(得分:4)
您可以使用容器别名mysql
从java容器
DriverManager.getConnection("jdbc:mysql://mysql:3306/university", ...