Skip to content

Commit

Permalink
Update J2EE基础知识.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb authored Aug 10, 2018
1 parent cc3360d commit eed7d15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Java相关/J2EE基础知识.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

3,需要重复编写处理网络协议的代码以及编码,这些工作都是非常耗时的。

### Servlet的优点
### Servlet的优点:

1,只需要启动一个操作系统进程以及加载一个JVM,大大降低了系统的开销

Expand Down Expand Up @@ -235,7 +235,7 @@ JSP中的四种作用域包括page、request、session和application,具体来

说明:如果将JSP或Servlet设置成单线程工作模式,会导致每个请求创建一个Servlet实例,这种实践将导致严重的性能问题(服务器的内存压力很大,还会导致频繁的垃圾回收),所以通常情况下并不会这么做。

##实现会话跟踪的技术有哪些
## 实现会话跟踪的技术有哪些
1. **使用Cookie**

向客户端发送Cookie
Expand Down

0 comments on commit eed7d15

Please sign in to comment.