上一页 1 ··· 17 18 19 20 21
摘要: MVC是一个框架模式,它强制性的使应用程序的输入、处理和输出分开。使用MVC应用程序被分成三个核心部件:模型、视图、控制器。 V页面传递数据给C,C调用模型处理返回数据给V 最典型的MVC就是JSP + servlet + javabean的模式 JavaBean 是一种JAVA语言写成的可重用组件 阅读全文
posted @ 2017-01-09 10:08 欧阳平 阅读(282) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/webers/p/3849707.html 阅读全文
posted @ 2017-01-09 08:32 欧阳平 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1 <body> 2 <%! 3 4 //1、可定义方法 5 public String outMethod(){ 6 return "outMethod"; 7 } 8 //2、可定义static方法 9 public static String outStaticMethod(){ 10 ret 阅读全文
posted @ 2017-01-08 13:42 欧阳平 阅读(222) 评论(0) 推荐(0) 编辑
摘要: <!--Logical Styles--><em>This text is emphasized</em><strong>This text is strong</strong><code>This is some computer code</code><!--Definition list--> 阅读全文
posted @ 2017-01-07 08:59 欧阳平 阅读(633) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21