web server:netbox,使用方便
语言:asp,入手容易
数据库:access,界面 *** 作,无需密码, *** 作简单。第二步,新建一个用户表,username char(20)password char(20)添加数据,admin mypassword第三步,新建登录界面,文件名 login.asp<div>
<form name="login" method="post" action="loginaction.asp" target="_top">
<table align="center" style="margin-top:30"><tr><td>请输入用户名</td>
<td><input type="text" name="userName" id="userName2" size="10" /></td></tr><tr><td>请输入密码 </td>
<td><input type="password" name="userPwd" id="userPwd2" size="10" /></td></tr><tr><td colspan="2" align="center"><input type="button" id="login2" value="登录" onClick="login2Check()" /></td></tr></table></form></div>新建loginaction.asp<!--#include file="conn.asp"--><%dim sql,userName,userPwd
userName=trim(request("userName"))
userPwd=trim(request("userPwd"))
if userName="maintain" then
sql="select userPwd from user_info where userId=2"
rs.Open sql,cn,1,1
asd=trim(rs("userPwd"))
if userPwd=asd then
session("name")=userName
response.Redirect("maintainance_personnel.asp")else%><script language="javascript">
alert("密码错误!")
window.location="index.asp"</script><%end ifrs.closeelse%>
<script language="javascript">
alert("用户名错误!")
window.location="index.asp"</script><%end if%>新建连接数据库文件conn.asp<%
set cn=Server.CreateObject("ADODB.Connection")
Java单体项目里,我们一般是只需配置一个数据库,这时代码里的dao层都是只对一个数据库 *** 作;但有时候我们的数据可能在2个或者3个数据库,这时就需要配置更多数据源,进行数据库直连 *** 作,下面以MySQL的两个库为例(Oracle也就换个驱动类与连接串)。
(本文阅读大概花费两分钟)
技术条件:
springboot 2.5.3 (即springframework 5.3.9)
MySQL 5.7
mybatis-plus 3.5.0
dynamic-datasource 3.5.0
druid 1.2.9
idea开发工具、maven 3.3.9
1、导入相关依赖
2、建立两个数据库mydb(表 user)、db2(表t_class),并分别建一张表
3、编写application.yaml配置文件
4、编写po类、dao层、一个接口测试类
其中,在dao的类加上对应的数据源标识符,使用此注解com.baomidou.dynamic.datasource.annotation.DS
5、启动项目,查看结果
至此,多数据源环境集成成功;当然这里只使用了查询功能,对应事务相关的下一回合文章再做讨论啥。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)