我有以下问题:我想在docker-compose文件中为我的数据库连接定义一些环境变量。
services:
myapp:
build: SessionHandler
container_name: sessionhandler
environment:
- JAVA_OPTS=-DdbUrl=10.5.0.1 -DdbPort=3306 -DdbUsername=root -DdbPassword=root
ports:
- "8080:8080"
volumes:
- ./myapp/tomcat/conf/:/opt/tomcat/conf/
我想通过以下方式在我的 context.xml 中使用这些变量:
<Context>
<Resource
auth="Container"
driverClassName="com.mysql.jdbc.Driver"
type="javax.sql.DataSource"
initialSize="0"
maxActive="10"
maxIdle="5"
maxWait="5000"
minIdle="0"
timeBetweenEvictionRunsMillis="34000"
minEvictableIdleTimeMillis="55000"
testOnBorrow="true"
testWhileIdle="true"
testOnReturn="false"
validationQuery="SELECT 1 FROM dual"
validationInterval="30000"
removeAbandoned="true"
removeAbandonedTimeout="10"
name="jdbc/myapp"
username="${dbUsername}"
password="${dbPassword}"
url="jdbc:mysql://${dbUrl}:${dbPort}/myapp?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8"
/>
</Context>
但是它不起作用。 (浏览器给了我500)
如果我将变量显式添加到context.xml中,则采用这种方式:
<Context>
<Resource
auth="Container"
driverClassName="com.mysql.jdbc.Driver"
type="javax.sql.DataSource"
initialSize="0"
maxActive="10"
maxIdle="5"
maxWait="5000"
minIdle="0"
timeBetweenEvictionRunsMillis="34000"
minEvictableIdleTimeMillis="55000"
testOnBorrow="true"
testWhileIdle="true"
testOnReturn="false"
validationQuery="SELECT 1 FROM dual"
validationInterval="30000"
removeAbandoned="true"
removeAbandonedTimeout="10"
name="jdbc/myapp"
username="root"
password="root"
url="jdbc:mysql://10.5.0.1:3306/myapp?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8"
/>
</Context>
一切正常。谁能帮我?真的谢谢你。
更新
我已将以下系统变量插入 catalina.properties 文件中:
dbUrl=10.5.0.1
dbPort=3306
dbUsername=root
dbPassword=root
和context.xml
<Resource
auth="Container"
driverClassName="com.mysql.jdbc.Driver"
type="javax.sql.DataSource"
initialSize="0"
maxActive="10"
maxIdle="5"
maxWait="5000"
minIdle="0"
timeBetweenEvictionRunsMillis="34000"
minEvictableIdleTimeMillis="55000"
testOnBorrow="true"
testWhileIdle="true"
testOnReturn="false"
validationQuery="SELECT 1 FROM dual"
validationInterval="30000"
removeAbandoned="true"
removeAbandonedTimeout="10"
name="jdbc/myapp"
username="${dbUsername}"
password="${dbPassword}"
url="jdbc:mysql://${dbUrl}:${dbPort}/myapp?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8"
/>
工作。所以我尝试将它们定义为空,以便将它们定义到docker-compose.yml中:
dbUrl=
dbPort=
dbUsername=
dbPassword=
但是它不起作用。有什么帮助吗?
答案 0 :(得分:0)
接下来,直接将这些参数添加为容器环境变量,我想如果没有java -D
指定这些环境,容器中的环境变量也可以传递给Java程序。
services:
myapp:
build: SessionHandler
container_name: sessionhandler
environment:
- dbUrl=10.5.0.1
- dbPort=3306
- dbUsername=root
- dbPassword=root