酷炫溪流

文章
6
资源
0
加入时间
2年10月17天

java学习之路(1)-jsoup,tomcat故障排除,servlet的简单实用

文章目录java学习之路1.jsoup选择器2.java的命名规范3.XPath4.tomcat4.1 安装bug4.2 关闭4.3项目部署,建议直接结合开发工具5.Servlet1.简介2.在web.xml写注释配置servlet3.在tomcat已经运行的情况下浏览器没能访问服务4.sevlet的初始化方法5.sevlet的线程安全问题6.方便的注解配置7.Servlet的体系结构java学习之路1.jsoup选择器select方法本来是element的,但是document是继承eleme

(POJ 3280)Cheapest Palindrome 回文数变形

Cheapest Palindrome DescriptionKeeping track of all the cows can be a tricky task so Farmer John has installed a system to automate it. He has installed on each cow an electronic ID tag that the syste

MVC 和Model2的区别

1.简述MVC。MVC是复合模式,结合了观察者模式、策略模式和组合模式。模型使用Observer,控制器是视图的策略,视图使用组合模式实现用户界面。适配器是使用MVC时,经常附带用到的技巧:使用适配器将模型适配成符合现有视图和控制器的需要的模型。2.MVC 和Model2的区别。Model2是MVC在Web上的应用。