開發(fā)一個app與后臺數(shù)據(jù)庫交互,基于MySQL+jdbc+tomcat,沒有使用DBUtils或jdbc框架,純粹底層jdbc實現(xiàn).
以后逐步改用Spring框架,優(yōu)化mysql,進(jìn)一步部署tomcat等等,現(xiàn)在項目剛剛起步,還有很多不懂的東西,得慢慢來......
這幾天踩了很多坑,說得夸張點真是踩到我沒有知覺,希望能幫助別人少踩坑...
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名注冊、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、丹鳳網(wǎng)站維護(hù)、網(wǎng)站推廣。
2.github
這是源碼地址,包括前后端與建表等所有代碼.
(歡迎star)
IDE就不說了,重點說一下mysql與tomcat9的安裝
這個是目前比較新的mysql版本.
服務(wù)器系統(tǒng)是centos
其他系統(tǒng)安裝看這里
centos使用yum命令安裝(參考鏈接)
sudo yum localinstall https://repo.mysql.com//mysql80-community-release-el7-1.noarch.rpm
sudo yum install mysql-community-server
sudo service mysqld start
sudo grep 'temporary password' /var/log/mysqld.log
mysql -u root -p
輸入上一步看到的密碼
alter mysql.user 'root'@'localhost' identified by 'password';
注意新版本的mysql不能使用太弱的密碼
如果出現(xiàn)如下提示
則說明密碼太弱了,請使用一個更高強(qiáng)度的密碼
use mysql;
update user set host='%' where user='root';
這個可以根據(jù)自己的需要去修改,host='%'表明允許所有的ip登錄,也可以設(shè)置特定的ip,若使用host='%'的話建議新建一個用戶配置相應(yīng)的權(quán)限.
由于作者使用的是阿里云的服務(wù)器,沒配置防火墻的話遠(yuǎn)程連接不上,因此需要手動配置,如圖
其中授權(quán)對象可以根據(jù)自己的需要更改,0.0.0.0/0表示允許所有的ip.
作者使用的是scp命令,不會的可以看這里
scp apache-tomcat-xxxx.tar.gz username@xx.xx.xx.xx:/
改成自己的用戶名和ip
mkdir /usr/local/tomcat
mv apache-tomcat-xxxx.tar.gz /usr/local/tomcat
tar -xzvf apache-tomcat-xxx.tar.gz
修改conf/server.xml文件,一般只需修改
中的8080端口,修改這個端口即可
這個懶的話(比如作者)可以不改
運(yùn)行bin目錄下的startup.sh
cd bin
./startup.sh
瀏覽器輸入
服務(wù)器IP:端口
若出現(xiàn)
則表示成功.
建議配置開機(jī)啟動,修改/etc/rc.local文件
vim /etc/rc.local
添加
sh /usr/local/tomcat/bin/startup.sh
這個根據(jù)自己的tomcat安裝路徑修改,指定bin下的startup.sh即可
創(chuàng)建用戶表,這里簡化操作(好吧我喜歡偷懶)就不創(chuàng)建新用戶不授權(quán)了
這是一個在本地用root登錄的示例,請根據(jù)實際情況創(chuàng)建并授權(quán)用戶.
CREATE DATABASE userinfo;
USE userinfo;
CREATE TABLE user
(
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
name CHAR(30) NULL,
password CHAR(30) NULL
);
mysql -u root -p < user.sql
選擇web application
選好路徑,改好名字后finish
創(chuàng)建一個叫l(wèi)ib的目錄
添加兩個jar包:
mysql-connector-java-8.0.17.jar
javax.servlet-api-4.0.1.jar
打開Project Structure
Modules--> + --> JARs or directories
選擇剛才新建的lib下的兩個jar包
打勾,apply
總共4個包
這個是連接數(shù)據(jù)庫的類,純粹的底層jdbc實現(xiàn),注意驅(qū)動版本.
package com.util;
import java.sql.*;
public class DBUtils {
private static Connection connection = null;
public static Connection getConnection()
{
try {
Class.forName("com.mysql.cj.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/數(shù)據(jù)庫名字";
String usename = "賬號";
String password = "密碼";
connection = DriverManager.getConnection(url,usename,password);
}
catch (Exception e)
{
e.printStackTrace();
return null;
}
return connection;
}
public static void closeConnection()
{
if(connection != null)
{
try {
connection.close();
}
catch (SQLException e)
{
e.printStackTrace();
}
}
}
}
主要就是獲取連接與關(guān)閉連接兩個函數(shù).
String url = "jdbc:mysql://127.0.0.1:3306/數(shù)據(jù)庫名字";
String usename = "賬號";
String password = "密碼";
這幾行根據(jù)自己的用戶名,密碼,服務(wù)器ip和庫名修改
注意,mysql8.0以上使用的注冊驅(qū)動的語句是
Class.forName("com.mysql.cj.jdbc.Driver");
舊版的是
Class.forName("com.mysql.jdbc.Driver");
注意對應(yīng).
User類比較簡單,就是就三個字段與getter,setter
package com.entity;
public class User {
private int id;
private String name;
private String password;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
package com.dao;
import com.entity.User;
import com.util.DBUtils;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class UserDao {
public boolean query(User user)
{
Connection connection = DBUtils.getConnection();
String sql = "select * from user where name = ? and password = ?";
try {
PreparedStatement preparedStatement = connection.prepareStatement(sql);
preparedStatement.setString(1,user.getName());
preparedStatement.setString(2,user.getPassword());
ResultSet resultSet = preparedStatement.executeQuery();
return resultSet.next();
}
catch (SQLException e)
{
e.printStackTrace();
return false;
}
finally {
DBUtils.closeConnection();
}
}
public boolean add(User user)
{
Connection connection = DBUtils.getConnection();
String sql = "insert into user(name,password) values(?,?)";
try {
PreparedStatement preparedStatement = connection.prepareStatement(sql);
preparedStatement.setString(1,user.getName());
preparedStatement.setString(2,user.getPassword());
preparedStatement.executeUpdate();
return preparedStatement.getUpdateCount() != 0;
}
catch (SQLException e)
{
e.printStackTrace();
return false;
}
finally {
DBUtils.closeConnection();
}
}
}
主要就是查詢與添加操作,查詢操作中存在該用戶就返回true,否則返回false
添加操作中使用executeUpdate()與getUpdateCount() != 0.注意不能直接使用
return preparedStatement.execute();
去代替
preparedStatement.executeUpdate();
return preparedStatement.getUpdateCount() != 0;
咋一看好像沒有什么問題,那天晚上我測試的時候問題可大了,android那邊顯示注冊失敗,但是數(shù)據(jù)庫這邊的卻insert進(jìn)去了.........我......
好吧說多了都是淚,還是函數(shù)用得不夠熟練.
所以在這個例子中
return preparedStatement.execute();
肯定返回false,所以才會數(shù)據(jù)庫這邊insert進(jìn)去,但前端顯示注冊失敗(這個bug作者找了很久......)
SingIn類用于處理登錄,調(diào)用jdbc查看數(shù)據(jù)庫是否有對應(yīng)的用戶
SignUp類用于處理注冊,把user添加到數(shù)據(jù)庫中
這兩個使用的是http連接,后期作者會采用https加密連接.
SignIn.java
package com.servlet;
import com.dao.UserDao;
import com.entity.User;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebServlet("/SignIn")
public class SingIn extends HttpServlet {
@Override
protected void doGet(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws IOException,ServletException
{
this.doPost(httpServletRequest,httpServletResponse);
}
@Override
protected void doPost(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse) throws IOException, ServletException
{
httpServletRequest.setCharacterEncoding("utf-8");
httpServletResponse.setCharacterEncoding("utf-8");
httpServletResponse.setContentType("text/plain;charset=utf-8");//設(shè)置相應(yīng)類型為html,編碼為utf-8
String name = httpServletRequest.getParameter("name");
String password = httpServletRequest.getParameter("password");
UserDao userDao = new UserDao();
User user = new User();
user.setName(name);
user.setPassword(password);
if(!userDao.query(user))//若查詢失敗
{
httpServletResponse.sendError(204,"query failed.");//設(shè)置204錯誤碼與出錯信息
}
}
}
@WebServlet("/SignIn")
這行代碼表示這是一個名字叫SignIn的servlet,可用于實現(xiàn)servlet與url的映射,如果不在這里添加這個注解,則需要在WEB-INF目錄下的web.xml添加一個
叫servlet的映射
httpServletResponse.setContentType("text/plain;charset=utf-8");//設(shè)置相應(yīng)類型為html,編碼為utf-8
這行代碼設(shè)置響應(yīng)類型與編碼
String name = httpServletRequest.getParameter("name");
String password = httpServletRequest.getParameter("password");
HttpServletRequest.getParameter(String name)方法表示根據(jù)name獲取相應(yīng)的參數(shù)
下面是SignUp.java
package com.servlet;
import com.dao.UserDao;
import com.entity.User;
import javax.servlet.annotation.*;
import javax.servlet.http.*;
import javax.servlet.*;
import java.io.IOException;
@WebServlet("/SignUp")
public class SignUp extends HttpServlet {
@Override
protected void doGet(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse) throws IOException,ServletException
{
this.doPost(httpServletRequest,httpServletResponse);
}
@Override
protected void doPost(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse) throws IOException,ServletException
{
httpServletRequest.setCharacterEncoding("utf-8");
httpServletResponse.setCharacterEncoding("utf-8");//設(shè)定編碼防止中文亂碼
httpServletResponse.setContentType("text/plain;charset=utf-8");//設(shè)置相應(yīng)類型為html,編碼為utf-8
String name = httpServletRequest.getParameter("name");//根據(jù)name獲取參數(shù)
String password = httpServletRequest.getParameter("password");//根據(jù)password獲取參數(shù)
UserDao userDao = new UserDao();
User user = new User();
user.setName(name);
user.setPassword(password);
if(!userDao.add(user)) //若添加失敗
{
httpServletResponse.sendError(204,"add failed.");//設(shè)置204錯誤碼與出錯信息
}
}
}
SignIn
com.servlet.SingIn
SignUp
com.servlet.SignUp
要把剛才創(chuàng)建的Servlet添加進(jìn)web.xml,在
如果在Servlet類中沒有添加
@WebServlet("/xxxx")
這個注解,則需要在web.xml中添加
SignIn
/SignIn
其中
Welcome
Hello web.