SpringBoot 系列教程 JPA 错误姿势之环境配置问题
Posted 1994july
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 系列教程 JPA 错误姿势之环境配置问题相关的知识,希望对你有一定的参考价值。
又回到 jpa 的教程上了,这一篇源于某个简单的项目需要读写 db,本想着直接使用 jpa 会比较简单,然而悲催的是实际开发过程中,发现了不少的坑;本文为错误姿势第一篇,Repository 接口无法注入问题
<!-- more -->
I. 配置问题
新开一个 jpa 项目结合 springboot 可以很方便的实现,但是在某些环境下,可能会遇到自定义的 JpaRepository 接口无法注入问题
1. 基本配置
在 spring-boot 环境中,需要在pom.xml
文件中,指定下面两个依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
接下来需要修改一下配置文件(application.properties
),指定数据库的配置信息
## DataSource
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/story?useUnicode=true&characterEncoding=UTF-8&useSSL=false
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=
spring.jpa.database=MYSQL
spring.jpa.hibernate.ddl-auto=none
spring.jpa.show-sql=true
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
2. 注入失败 case 复现
首先在 mysql 的 story 库中,新增一个表
CREATE TABLE `meta_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group` varchar(32) NOT NULL DEFAULT ‘‘ COMMENT ‘分组‘,
`profile` varchar(32) NOT NULL DEFAULT ‘‘ COMMENT ‘profile 目前用在应用环境 取值 dev/test/pro‘,
`desc` varchar(64) NOT NULL DEFAULT ‘‘ COMMENT ‘解释说明‘,
`deleted` int(4) NOT NULL DEFAULT ‘0‘ COMMENT ‘0表示有效 1表示无效‘,
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ‘创建时间‘,
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ‘修改时间‘,
PRIMARY KEY (`id`),
KEY `group_profile` (`group`,`profile`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT=‘业务配置分组表‘;
然后定义这个表对应的 Entity
@Data
@Entity
@Table(name = "meta_group")
public class MetaGroupPO {
@Id
@Column(name = "`id`")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name = "`group`")
private String group;
@Column(name = "`profile`")
private String profile;
@Column(name = "`desc`")
private String desc;
@Column(name = "`deleted`")
private Integer deleted;
@Column(name = "`create_time`")
@CreatedDate
private Timestamp createTime;
@Column(name = "`update_time`")
@CreatedDate
private Timestamp updateTime;
}
对应的 repository 接口
public interface GroupJPARepository extends JpaRepository<MetaGroupPO, Integer> {
List<MetaGroupPO> findByProfile(String profile);
MetaGroupPO findByGroupAndProfileAndDeleted(String group, String profile, Integer deleted);
@Modifying
@Query("update MetaGroupJpaPO m set m.desc=?2 where m.id=?1")
int updateDesc(int groupId, String desc);
@Modifying
@Query("update MetaGroupJpaPO m set m.deleted=1 where m.id=?1")
int logicDeleted(int groupId);
}
一个简单的数据操作封装类GroupManager
@Component
public class GroupManager {
@Autowired
private GroupJPARepository groupJPARepository;
public MetaGroupPO getOnlineGroup(String group, String profile) {
return groupJPARepository.findByGroupAndProfileAndDeleted(group, profile, 0);
}
public Integer addGroup(String group, String profile, String desc) {
MetaGroupPO jpa = new MetaGroupPO();
jpa.setGroup(group);
jpa.setDesc(desc);
jpa.setProfile(profile);
jpa.setDeleted(0);
Timestamp timestamp = Timestamp.from(Instant.now());
jpa.setCreateTime(timestamp);
jpa.setUpdateTime(timestamp);
MetaGroupPO res = groupJPARepository.save(jpa);
return res.getId();
}
}
接下来重点来了,当我们的启动类,不是在外面时,可能会出现问题;项目结构如下
我们看一下配置类,和错误的启动应用类
@Configuration
@ComponentScan("com.git.hui.boot.jpacase")
public class JpaCaseAutoConfiguration {
}
@SpringBootApplication
public class ErrorApplication {
public static void main(String[] args) {
SpringApplication.run(ErrorApplication.class);
}
}
直接启动失败,异常如下图,提示找不到GroupJPARepository
这个 bean,而这个 bean 在正常启动方式中,会由 spring 帮我们生成一个代理类;而这里显然是没有生成了
3. case 分析
上面的 case 可能有点极端了,一般来讲项目启动类,我们都会放在最外层;基本上不太会出现上面这种项目结构,那么分析这个 case 有毛用?
一个典型的 case
- 我们将 db 操作的逻辑放在一个 module(如 dao.jar)中封装起来
- 然后有一个启动的 module,通过 maven 引入上 dao.jar
- 这是入口的默认扫描范围,可能就无法包含 dao.jar,因此极有可能导致注入失败
4. 解决方案
那么该怎么解决这个问题呢?
在配置类中,添加两个注解EnableJpaRepositories
与EntityScan
,并制定对应的包路径
@Configuration
@EnableJpaRepositories("com.git.hui.boot.jpacase")
@EntityScan("com.git.hui.boot.jpacase.entity")
public class TrueJpaCaseAutoConfiguration {
}
然后再次测试
@SpringBootApplication
public class TrueApplication {
public TrueApplication(GroupManager groupManager) {
int groupId = groupManager.addGroup("true-group", "dev", "正确写入!!!");
System.out.println("add groupId: " + groupId);
MetaGroupPO po = groupManager.getOnlineGroup("true-group", "dev");
System.out.println(po);
}
public static void main(String[] args) {
SpringApplication.run(ErrorApplication.class);
}
}
5. 小结
最后小结一下,当我们发现 jpa 方式的 Repository 无法注入时,一般是因为接口不再我们的扫描路径下,需要通过@EntityScan
与@EnableJpaRepositories
来额外指定
来源:泉州网站优化
以上是关于SpringBoot 系列教程 JPA 错误姿势之环境配置问题的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot系列教程web篇Servlet 注册的四种姿势