先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新HarmonyOS鸿蒙全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上鸿蒙开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip204888 (备注鸿蒙)
正文
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.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd”>
<context:component-scan base-package=“com.gx” >
<context:exclude-filter type=“annotation” expression=“org.springframework.stereotype.Controller” />
</context:component-scan>
3. 在项目中编写测试方法,进行测试
1、创建Test包
2、在test包中创建一个叫TestSpring的class类,具体的内容如下:
package com.gx.test;
import com.gx.domain.Account;
import com.gx.service.AccountService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestSpring {
@Test
public void run1(){
ApplicationContext ac = new ClassPathXmlApplicationContext(“classpath:applicationContext.xml”);
AccountService as = (AccountService) ac.getBean(“accountService”);
as.findAll();
}
}
运行如下效果,说明搭建Spring的开发环境成功!
到这里,Spring的开发环境成功!接下来搭建SpringMVC框架环境。
3、SpringMVC框架代码的编写
搭建和测试SpringMVC的开发环境
1. 在web.xml中配置DispatcherServlet前端控制器
dispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:springmvc.xml 1 dispatcherServlet /2. 在web.xml中配置DispatcherServlet过滤器解决中文乱码
characterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 characterEncodingFilter /\*3. web.xml中配置的整体效果
Archetype Created Web Application
4. 创建springmvc.xml的配置文件,编写配置文件
同样是在resources资源文件夹中创建springmvc.xml配置文件