后端我用 IntelliJ IDEA 软件。
一. 创建项目file-new-project next next 选择web-spring web,next 后面就是选择文件存储位置,这个按照个人喜好即可。最后finish
二. 项目设计 1.配置 POM 池因为要连接数据库,所以要引入数据库的dependency。
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-web-services org.springframework.boot spring-boot-devtools true mysql mysql-connector-java runtime org.springframework.boot spring-boot-starter-data-jpa我把我整个 POM 池的 dependency 都粘过来,重点是 mysql 和 jpa 两个 dependency ,读者可以自行上网搜其他引入数据库的办法对比学习,其实都是一样的。。。
有的朋友引入时会报错,因为我刚加入的时候也报错,但每个人情况都不同,报什么错就在控制台看什么错,然后搜解决办法。这里一定要做到不报错了再进行下一步。
第二步,在 src/main/resources/application.properties 文件里配置数据库信息
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/baidu_search?characterEncoding=UTF-8spring.datasource.username=rootspring.datasource.password=adminspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.jpa.hibernate.ddl-auto = none插播:数据库命名如下
解释一下,第一行的 baidu_search 对应数据库的名字,二三行是自己数据库的账号密码,这个在下载数据库的时候预设好的,要记得,要是忘记了就很麻烦哦。(笔者忘记了,搞到最后卸载又下了一遍 mysql 哭哦!!)四五行不用管。
2.项目结构读者需要自己新建好这几个文件夹和 JAVA 类。
说明: SearchController用来写与前端通信的接口,里面return的内容就是送给前端的内容。 SearchDAO定义了对数据库搜索的语句 Receive用来接收来自前端的输出,做好映射 Search用来接收来自数据库的数据,做好映射
(1)Receive
package com.zyt.baidu_search.pojo;public class Receive { // 接收来自前端的输出 String searchContent; public String getSearchContent() { return searchContent; }}