搭建Spring项目的基本配置
Posted amcomputer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建Spring项目的基本配置相关的知识,希望对你有一定的参考价值。
1 新建
2 选择Maven
3 GAV坐标
4 删除src
如果只是这样建立的话。项目文件比较多,特别是底层代码太多了,非常不好管理。所以选择删除。重新建立多个模块。
5 新建多个模块
6 说明:
1,一般用来写具体的业务逻辑,如Service或者ServiceIMpl的具体实现
2 一般用来连接数据库,里面可以放一些POJO类,自定义的Requst或者Response
3 core,一般用来写数据库的增删改查逻辑
4,web,一般写前端调用的接口,比如写Controller层
5,test, 项目用到的测试用列就放到这里了。
xml内容:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
</beans>
以上是关于搭建Spring项目的基本配置的主要内容,如果未能解决你的问题,请参考以下文章
Spring+Springmvc+Hibernate环境搭建与配置
Intellij IDEA 搭建Spring Boot项目spring-dao的相关配置
Intellij IDEA 搭建Spring Boot项目配置事务和Redis缓存