<%@pageimport="com.code.Student"%>
在jsp页面中写入这样的代码就是导入你自己自定义的类了
com 和code 是包名 Student 是其中的类。
『贰』 jsp如何引用java类,有哪几种方法说明下
<%@page import="com.Test"%>//引入Test.java包
<%
这里正常使用Test.jsva就行了
%>
目前我只用这个方法
其实在jsp中使用java类 除了在包前面加@page 和<%%>包括起来 其他和写java代码没区别,明白了吧
『叁』 JSP里面怎么调用java类里面的方法。
我勒个去。。。这个是js的方法。都是放在jsp里面。。
function save()
{
String userName = document.getElementById("userName").value;
String telNumber= document.getElementById("telNumber").value;
//调用java类方法里面的保存函数专来保属存两个String
return true;
}
<body>
<input type="text" id="userName" />
<input type="text" id="telNumber" />
<input type="button" value="提交" onclick="save()" />
</body>
『肆』 jsp如何调用java类
jsp调用java类的步骤:抄
1.新建一个项目,在src文件夹下添加一个包:如:tianaoweb.com;
2.再在包中添加一个类:如
package com;
public class test {
public String sd(){
return "sd";
}
}
3.在默认的首页index.jsp(当然也可以自己新建一个jsp文件)的开头引入
<%@ page import= "tianaoweb.com.* "%>
4.在<body> </body>中添加相应的java代码片:
如:
<%
String str;
test te=new test();
%>
<%=te.sd() %>
『伍』 怎么在jsp页面中调用service层中类的方法
首先在配置文件里注明bean,如下所示:
[html] view plain
<beans:bean id="clientService" class="cn.bandlive.service.impl.ClientServiceImpl">
<property name="clientMapper" ref="clientDao"></property>
<property name="clientThirdplatformMapper" ref="clientThirdplatformDao"></property>
</beans:bean>
然后在jsp的<%%>中通过WebApplicationContextUtils工具类获取ApplicationContext对象,如下所示:
[html] view plain
ApplicationContext ctx =
WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
ClientService clientService = (ClientService) ctx.getBean("clientService");
这样你就可以调用clientService里面的方法