摘要:
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml"); Student student = (Student) ac.getBean("student"); System.out.println("name "+student.getName()); //从 数组中循环取值; ... 阅读全文
摘要:
在JSP页面获取当前项目名称的方法:方法1: 方法2: 使用EL表达式(如果不清楚EL表达式是什么,大家可以百度一下)${pageContext.request.contextPath}struts-html标签c标签post提交myXmlHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded")... 阅读全文
摘要:
1.获取XMLHttpResponse对象;(1号线)function getXMLHttpRequest(){ try { //火狐浏览器xmlHttpRequest=new XMLHttpRequest(); } catch (e) { //IE浏览器xmlHttpRequest=new ActiveXObject("Microsoft.XMLHTTP"); } return xmlHt... 阅读全文
摘要:
u ssh整合** ssh(struts+spring+hibernate) 三大框架配合使用来开发项目,是目前java ee 最流行的开发方式,必须掌握.**设计: 这我们通过一个实际的案例,来讲解整合 , 我们使用一个雇员薪资管理系统(crud),每加入一个框架,我们就测试通过具体的步骤:1.创建web项目 ① 先搞定spring② 引入spring开发包③ ... 阅读全文
摘要:
整体思路: 1首先实现登陆功能,1.创建web项目,引入jar包2.创建user表 和messages表,使用逆向工程创建domin对象;create table users(id int primary key,name varchar(32) not null unique,password varchar(32) not null,regtime date not null,islogin ... 阅读全文