MySQL数据库之一个RESTful+MySQL程序
小标 2018-08-20 来源 : 阅读 2916 评论 0

摘要:本文主要向大家介绍了MySQL数据库之一个RESTful+MySQL程序 ,通过具体的内容向大家展现,希望对大家学习MySQL数据库有所帮助。

本文主要向大家介绍了MySQL数据库之一个RESTful+MySQL程序 ,通过具体的内容向大家展现,希望对大家学习MySQL数据库有所帮助。

准备工作1、安装mysql。2、安装mysql可视化工具Navicat。(由于本人偏好,所以暂时用这个可视化工具)。3、Intellij安装mysql jdbc驱动。4、在GlassFish中加入mysql jdbc驱动。 安装启动mysql1、下载地址https://www.mysql.com/downloads/ (虽然你可以搜到很多下载的渠道,但是建议在官方下载,你懂的)。2、根据提示进行安装配置。(这不是重点,不清楚的自己google)。3、如果出现安装不上那应该是系统权限问题,采用系统管理员权限安装就可以了。(我在win10下进行安装遇到了权限问题)。4、启动mysql服务。5、加入测试数据。数据库我们命名成RESTful,加一个表Product,里面包括4个字段:id、name、cover、price。具体如图:为了方便测试就先加了一条记录。 安装Navicat我们用Navicat进行可视化操作,当然你可以直接在mysql提供的工具或命令行进行数据操作。1、下载地址https://www.navicat.com/download,至于是否付费或者破解就看你自己了,你懂的。2、根据提示进行安装。 Intellij安装mysql jdbc驱动1、在Intellij在主菜单中选择View|Tool Windows|Databases。2、右边弹出Database栏目,选择上面的“+”,依次选择DataSource|MySQL,此时弹出一个Data Source and Drive的对话框。 3、点击左上方“+”,选择MySQL。根据提示填写右边的字段。4、点击右边面板的Driver:MySQL,下载MySQL驱动。 在GlassFish中加入mysql jdbc驱动。1、把mysql的驱动(eg:mysql-connector-java-5.1.35-bin.jar)放入..\glassfish4\glassfish\lib (具体参考你的GlassFish的安装目录)。 编码1、加入mysql驱动jar包。2、目录结构如下:3、目录结构介绍。bo里面是实体类,dao是数据库相关的操作类(为了方便理解流程所以不涉及ORM之类的东西)。下面来看看每个类的具体情况:BoProduct.javapackage bo;/**
 * Created by Administrator on 2017/2/19 0019. */public class BoProduct {    private int id;    private String name;    private String cover;    private long price;    public BoProduct(int id, String name, String cover, long price) {        this.id = id;        this.name = name;        this.cover = cover;        this.price = price;
    }    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 getCover() {        return cover;
    }    public void setCover(String cover) {        this.cover = cover;
    }    public long getPrice() {        return price;
    }    public void setPrice(long price) {        this.price = price;
    }

    @Override    public String toString() {        return "BoProduct{" +
                "id=" + id +
                ", name=‘" + name + ‘\‘‘ +
                ", cover=‘" + cover + ‘\‘‘ +
                ", price=" + price +
                ‘}‘;
    }
} DbConnection.javapackage dao;/**
 * Created by Administrator on 2017/2/19 0019. */import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;public class DbConnection {    public Connection getConnection() throws Exception {        try {
            String connectionURL = "jdbc:mysql://localhost:3306/RESTful";
            Connection connection = null;
            Class.forName("com.mysql.jdbc.Driver").newInstance();
            connection = DriverManager.getConnection(connectionURL, "root", "root");            return connection;
        } catch (SQLException e) {
            e.printStackTrace();            throw e;
        } catch (Exception e) {
            e.printStackTrace();            throw e;
        }
    }
} DbProductManager.javapackage dao;import bo.BoProduct;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.util.ArrayList;import java.util.List;/**
 * Created by Administrator on 2017/2/19 0019. */public class DbProductManager {    public List getAllProduct() {
        List reuslt = null;
        DbConnection database = new DbConnection();
        Connection connection = null;        try {
            connection = database.getConnection();
            PreparedStatement ps = connection
                    .prepareStatement("SELECT * FROM product");
            ResultSet rs = ps.executeQuery();
            reuslt = new ArrayList<>();            while (rs.next()) {
                BoProduct item = new BoProduct(rs.getInt("id"),rs.getString("name"),rs.getString("cover"),rs.getLong("price"));
                reuslt.add(item);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }        return reuslt;
    }
} HelloWorld.javaimport bo.BoProduct;import dao.DbProductManager;import javax.ws.rs.GET;import javax.ws.rs.Path;import javax.ws.rs.Produces;import javax.ws.rs.core.MediaType;import java.util.List;/**
 * Created by Administrator on 2017/2/18 0018. */@Path("/helloworld")public class HelloWorld {
    @GET
    @Produces(MediaType.TEXT_PLAIN)    public String getClichedMessage() {
        StringBuilder stringBuilder = new StringBuilder();
        stringBuilder.append("data being\n");
        DbProductManager dbProductManager = new DbProductManager();
        List allProduct = dbProductManager.getAllProduct();        if (null != allProduct && !allProduct.isEmpty()) {            for (BoProduct item : allProduct) {
                stringBuilder.append(item.toString()).append("\n");
            }
        }
        stringBuilder.append("data end\n");        return stringBuilder.toString();
    }
} MyApplicationimport javax.ws.rs.ApplicationPath;import javax.ws.rs.core.Application;import java.util.HashSet;import java.util.Set;/**
 * Created by Administrator on 2017/2/18 0018. *///Defines the base URI for all resource URIs.@ApplicationPath("/")//The java class declares root resource and provider classespublic class MyApplication extends Application {    //The method returns a non-empty collection with classes, that must be included in the published JAX-RS application    @Override    public Set<Class> getClasses() {
        HashSet h = new HashSet<Class>();
        h.add(HelloWorld.class);        return h;
    }
}运行程序1、点击运行按钮。2、此时IDE为你做了一些你并不需要关系的事情(非业务的):编译并部署到服务器,启动浏览器。3、此时看到浏览器如下显示则说明你成功了。

本文由职坐标整理并发布,希望对同学们学习MySQL有所帮助,更多内容请关注职坐标数据库MySQL数据库频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved