上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 65 下一页
摘要: 第一步,按照第2.2节中的内容创建Spring Boot项目,项目创建完成之后打开pom.xml,添加如图3.1所示依赖 如图3.1 图中mybatis-spring-boot-starter是与MyBatis相关的依赖,mysql-connector-java是对MySQL进行持久化操作的相关依赖 阅读全文
posted @ 2022-12-15 22:31 cnetsa 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 如图2.5所示即为Spring Boot创建完成之后的项目结构, 图2.5 在此图中大家需要关注的只有四个地方,即为图中红框框起来的内容: pom.xml:项目依赖 Spring Boot框架所需要的依赖主要有两个: 1) spring-boot-starter-web 此依赖包含的内容有:Spri 阅读全文
posted @ 2022-12-15 22:23 cnetsa 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 2.1环境要求 JDK1.7及以上版本,Maven3.2及以上版本,IDEA14及以上版本 2.2搭建步骤 第一步:打开IDEA,选择File,新建project或者module,弹出如图2.1所示的窗 口 这里JDK默认选择1.8,如果没有安装JDK1.8,只要是1.7及以上的版本都可以。 第二步 阅读全文
posted @ 2022-12-15 22:18 cnetsa 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Spring Boot技术分析与运用—抢购网项目 在互联网兴起的时代,高可用、高性能和高可扩展性的项目架构方式将是一个必然趋势,而微服务则是目前最好的选择。微服务是更细粒度的分布式,它不再只由一个项目构成,而是将整个系统分割成更多的子项目,项目多了必然给框架的搭建和项目的运维带来更大的挑战,比如大量 阅读全文
posted @ 2022-12-15 22:16 cnetsa 阅读(537) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo; import com.example.demo.config.JavaConfig; import com.example.demo.model.Printer; import org.junit.Test; import org.junit.ru 阅读全文
posted @ 2022-12-15 16:39 cnetsa 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import java 阅读全文
posted @ 2022-12-15 16:33 cnetsa 阅读(37) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.Enable 阅读全文
posted @ 2022-12-15 16:32 cnetsa 阅读(43) 评论(0) 推荐(0) 编辑
摘要: package com.example.controller; import com.example.model.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframewo 阅读全文
posted @ 2022-12-15 16:22 cnetsa 阅读(62) 评论(0) 推荐(0) 编辑
摘要: package com.example.util; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springfra 阅读全文
posted @ 2022-12-15 16:20 cnetsa 阅读(16) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo; import com.example.model.User; import com.example.util.SpringUtil; import org.junit.Test; import org.junit.runner.RunWith; i 阅读全文
posted @ 2022-12-15 16:17 cnetsa 阅读(148) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 65 下一页