SpringMVC+Spring+mybatis 项目实践
创建一个SpringBoot项目
这里使用的是Spring Initializer: https://start.spring.io/
点击GENERATE就生成项目了下载后用IDEA打开
导入上一个项目的代码
数据库设计
进行配置数据库和MVC渲染
修改pom.xml文件,添加依赖
修改新闻类
添加一个mybatis的mapper库,进行增删查改
修改 NewsService
package com.example.demo.Service;
import com.example.demo.Entity.News;
import com.example.demo.Mapper.NewsMapper;
import org.apache.catalina.mapper.Mapper;
import org.springframework.beans.factory.annotation.Autowired;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class NewsService {
@Autowired
NewsMapper newsMapper;
public boolean AddNews(News news){
newsMapper.insert(news);
return true;
}
public boolean DeleteNews(int idnews){
newsMapper.deleteByPrimaryKey(idnews);
return true;
}
public boolean UpdateNews(News news) {
newsMapper.updateByPrimaryKey(news);
return true;
}
public List<News> QueryNews() throws SQLException {
return newsMapper.selectAll();
}
public News GetNews(int idnews) throws SQLException {
String sql="Select * from news where idnews='"+Integer.toString(idnews)+"'";
return news; }
return newsMapper.selectByPrimaryKey(idnews);
}
界面展示
登录界面
新闻列表
查看新闻
编辑新闻
码云地址:
https://gitee.com/TANGYILI/ssm_project_practice.git