为了账号安全,请及时绑定邮箱和手机立即绑定

我在springboot中该怎样取消xml约束?

我在springboot中该怎样取消xml约束?

FFIVE 2019-08-14 11:11:03
springboot怎样取消xml约束
查看完整描述

3 回答

?
慕婉清6462132

TA贡献1804条经验 获得超2个赞

spring官方包里,lib目录里除了带resource后缀的jar包,初学建议都加上,入门之后,你就明白你的项目里需要哪些包,不需要哪些包了。带resource后缀的jar是源码。

查看完整回答
反对 回复 2019-08-24
?
largeQ

TA贡献2039条经验 获得超7个赞

<!-- 核心模块,包括自动配置支持、日志和YAML -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>

<!-- 测试模块,包括JUnit、Hamcrest、Mockito -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<!-- 引入Web模块 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

查看完整回答
反对 回复 2019-08-24
  • 3 回答
  • 0 关注
  • 717 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信