- 博客(6)
- 资源 (1)
- 收藏
- 关注
原创 Response笔记
Response设置响应数据功能介绍Response完成重定向重定向时,资源路径为加上项目的虚拟路径:/request-demo/resp2简化方式完成重定向response.sendRedirect("/request-demo/resp2");路径问题
2022-05-22 21:55:07
958
原创 系统调用(课堂笔记)-父子孙进程
与进程调度有关的系统调用fork():建立进程main(){ int sum=0,i,n;//父进程的常量声明在最开始 if(fork==0){ //fork==0 子进程 int mul=1,i; for(i=1;i<=100;i++){ mul*i; //for循环实现1-100的阶乘 } printf(mul); //打印输出 Exit(0); //系统调用显性强制退出 }else{ //父进程 wait(&n);
2022-05-22 19:03:26
722
原创 Request笔记
Request继承体系Tomcat需要解析请求数据,封装为request对象,并且创建request对象传递到service方法中使用request对象,查阅JavaEE API文档的HttpServletRequest接口
2022-05-20 11:34:09
206
原创 spring错误记录01
Exception in thread “main” org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.tentact.test01.HelloSpring.java] for bean with name ‘hello’ defined in class path resource [applicationContext.xml]; nested exception is java.
2022-04-01 22:25:55
92
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人