文档上写
0.0.3. 修改服务配置
进入到config目录下,修改c3p0-config.xml
,正确配置 db地址,用户名 和 密码。
<!--MySQL数据库驱动程序--> <property name="driverClass">com.mysql.jdbc.Driver</property> <!--MySQL数据库地址--> <property name="jdbcUrl">jdbc:mysql://localhost:3306/wfchat?useSSL=false&serverTimezone=GMT&allowPublicKeyRetrieval=true</property> <!--MySQL数据库用户名--> <property name="user">root</property> <!--MySQL数据库密码--> <property name="password">xxxxxx</property>
mysql的地址是这个 jdbc:mysql://localhost:3306/wfchat?useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8
我想问是不是要把wfchat改成自己的数据库就可以了呢? h还是必须得用wfchat? mysql的jdbc地址怎么看啊