SpringBoot框架前言
SpringB是一个基于Java的开源框架,用于创建微服务。它由Pivotal Team开发,用于构建独立的生产就绪Spring应用。 SpringBoot 的设计是为了让你尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件,简化开发。
一、SpringBoot中三层架构是什么?
Controller层:(顾名思义 控制层)控制并处理http请求,将其不同的业务类型转送给Service层处理,并将Service层处理好的数据返回前端。入门来说,一个Controller对应一个Service,而一个Seervice也对应一个Dao就好了,感受程序是如何层层递进的。
二、三层架构的基本注解的使用
1.Controller层中的基本注解
1.1@Controller
标注于类体上,声明该类是Controller(相当于告诉你我是控制器)
1.2@RequestMapping
标注于方法体上,用于指定访问路径
1.3@ResponseBody
标注于方法体上,用于返回数据到<body>标签
@Controller
public class UserController {
@Resource
private UserService userService;
@RequestMapping("/user/query")
@ResponseBody
public String queryUser(Integer id){
return "查询用户的id是"+ id + "用户:" + userService.queryUser(id).toString();
}
}
2.Service层中的基本注解
@Service
标注于Service接口的实现类上,将当前类自动注入到Spring容器中
@Service
public class UserServiceImp implements UserService {
@Resource
private UserDao userDao;
@Override
public User queryUser(Integer id) {
User user = userDao.selectById(id);
return user;
}
}
3.Dao层中的基本注解
@Mapper 标注于接口的上方,用于框架寻找接口和对应接口的xml文件
对应的xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.start.springbootmapper.dao.UserDao">
<select id="selectById"
resultType="com.start.springbootmapper.entities.User">
select uid,username,password from t_user where uid=#{uid}
</select>
</mapper>
三、对应的pom文件与properties文件
properties文件:文章来源:https://www.toymoban.com/news/detail-470186.html
server.servlet.context-path=/orm spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url= spring.datasource.username= spring.datasource.password= #implements separating management for java files and xml files mybatis.mapper-locations=classpath:mapper/*.xml #output logs to console mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
pom文件:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.2</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.start</groupId> <artifactId>springboot-mapper</artifactId> <version>0.0.1-SNAPSHOT</version> <name>springboot-mapper</name> <description>springboot-mapper</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <!-- Web依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- Mybatis依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.4</version> </dependency> <!-- Mysql依赖--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <version>8.0.27</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
总结
这几个注解是SpringBoot中基础的注解通过这几个注解的使用可以写一个小的工程实现对数据库的访问并将数据显示到前端。文章来源地址https://www.toymoban.com/news/detail-470186.html
到了这里,关于SpringBoot(入门)三层架构Controller、Service、Dao的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!