在src/main/resources下创建spring配置文件

创建applicationContext.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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd"> <!-- 自动扫描指定目录,将控制器加载到bean --> <context:component-scan base-package="com.frame" /> <!-- 配置 druid 数据源 --> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <!-- 基本属性 url、user、password、driverClass --> <property name="username" value="root" /> <property name="password" value="root" /> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="jdbc:mysql://192.168.0.200:3306/test?useUnicode=true&characterEncoding=utf8&useSSL=false" /> </bean> <!-- 配置 sessionFactory --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="mapperLocations"> <list> <value>classpath:com/frame/**/*Mapper.xml </value> <value>classpath:mybatis/**/*Mapper.xml </value> </list> </property> </bean> <!-- 配置 sqlSessionTemplate 持久化模板 --> <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate"> <constructor-arg ref="sqlSessionFactory" /> </bean> <!-- 配置事物管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <!-- 配置事物传播行为 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true" /> <tx:method name="find*" read-only="true" /> <tx:method name="select*" read-only="true" /> <tx:method name="*" propagation="REQUIRED" /> </tx:attributes> </tx:advice> <!-- 配置事物切入点 --> <aop:config> <aop:pointcut expression="execution(* com.frame.service.*.*(..))" id="pointCut" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="pointCut" /> </aop:config> <!-- 开始声明式事务(事物注解) --> <tx:annotation-driven transaction-manager="transactionManager" /> </beans>
创建spring-mvc.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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd"> <!-- 自动将控制器加载到bean --> <context:component-scan base-package="com.frame.controller" /> <!-- 配置视图解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/views/" /> <property name="suffix" value=".jsp" /> <!-- 可为空,方便实现自已的依据扩展名来选择视图解释类的逻辑 --> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> </bean> <!-- 返回json 需导入 jackson-annotations.jar,jackson-core.jar,jackson-databind.jar --> <!-- 通过处理器映射DefaultAnnotationHandlerMapping来开启支持@Controller注解 --> <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" /> <!-- 通过处理器适配器AnnotationMethodHandlerAdapter来开启支持@RequestMapping注解 --> <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"> <property name="messageConverters"> <list> <!-- 配置返回字符串编码 --> <bean class="org.springframework.http.converter.StringHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>text/html; charset=UTF-8 </value> <value>application/json;charset=UTF-8 </value> </list> </property> </bean> <!-- 配置 json 转换器 --> <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>text/html; charset=UTF-8 </value> <value>application/json;charset=UTF-8 </value> </list> </property> </bean> </list> </property> </bean> </beans>


`src/main/resources/static` 目录是一个常见的 Spring Boot 项目用于存放静态资源文件的目录,包括 CSS、JavaScript、图片等文件。这些文件可以被直接访问,而不需要经过 Spring MVC 的处理。 在使用 Vue.js 开发前端页面的时候,可以将 Vue.js 项目的打包文件(通常是一个包含了 HTML、CSS、JavaScript 等文件的静态资源文件夹)放置在 Spring Boot 项目的 `src/main/resources/static` 目录下,然后在 Spring Boot 项目中配置对应的路由,使得用户可以通过访问 Spring Boot 项目的 URL 来访问 Vue.js 页面。 例如,假设 Vue.js 项目打包后的静态资源文件夹为 `dist`,则可以将其复制到 Spring Boot 项目的 `src/main/resources/static` 目录下,然后在 Spring Boot 项目的 `application.properties` 文件中添加如下配置: ``` # 配置 Spring Boot 的静态资源访问路径 spring.mvc.static-path-pattern=/static/** spring.resources.static-locations=classpath:/static/ ``` 这样,当用户访问 Spring Boot 项目的 URL 为 `/static/**` 的路径时,就会自动映射到 Spring Boot 项目的 `src/main/resources/static/` 目录下的对应文件。例如,如果 Vue.js 项目打包后的入口文件为 `index.html`,则可以通过访问 `http://localhost:8080/static/index.html` 来访问 Vue.js 页面。 需要注意的是,如果 Vue.js 项目中需要调用 Spring Boot 后端接口,可以通过 AJAX 或者 Axios 等方式来发送请求。在开发过程中,可以使用代理服务器(如 webpack-dev-server)来解决跨域问题,在生产环境中则需要在 Spring Boot 项目中进行跨域配置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值