RT,需要在JSP文件里引入.java文件的一个类。查了很多文档都没有查到详细的做法。还有两个问题:
1. 一定要用WEB-INF这样的目录咩?
2. 是否一定要编译好的.class文件才可以?
1
smallerror 2015-05-09 16:41:46 +08:00
<%@ page import="..." %>
|
2
askfermi OP @smallerror 我是这样做的…… 然后在同一级目录下的.java文件,
Entry.java: //File: entry.java //Desc: Entry Model package com.moment.utils; import java.sql.*; public class Entry { private String content; private int sender_id; private boolean visible; private int id; Entry(String c,int sid) { this.content=c; this.sender_id=sid; } int add() { try { Class.forName("com.mysql.jdbc.Driver"); Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/S2013150080?useUnicode=true&characterEncoding=utf-8","S2013150080","091330"); String sql = "INSERT INTO Entry (Content,Sender_id) values (?,?)"; PreparedStatement ps = conn.prepareStatement(sql); ps.setString(1,this.content); ps.setInt(2,this.sender_id); int i = ps.executeUpdate(); ps.close(); conn.close(); return i; } catch (Exception e) { return 0; } } } index.jsp: <%@ page language="java" import="java.util.*,com.moment.utils.Entry;" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <% Entry e = new Entry("Heel",1); out.print(e.add()); %> 可是这样子会报错:Only a type can be imported. com.moment.utils.Entry resolves to a package |
3
funky 2015-05-09 16:53:22 +08:00
JSP 就是个Servlet 和Servlet一样的方式导入就行了。
|
4
reeco 2015-05-09 17:03:17 +08:00
在/WEB-INF/classes下的直接
<% Foo foo = new Foo(); %> 如果是/WEB-INF/classes/com/mypackage/Foo.class <% com.mypackage.Foo foo = new com.mypackage.Foo(); %> |
5
mfaner 2015-05-09 20:42:00 +08:00
为什么这么做有什么限制?把目录设置为源文件目录可以吗
1. 可以自定义类加载器 |
6
wizardforcel 2015-05-09 20:42:13 +08:00
java文件不应该放src文件夹里面么。。。
|
7
yakczh 2015-05-09 20:43:28 +08:00
jsp太乱了, servlet+velocity 更好维护代码
|
8
smallerror 2015-05-16 02:31:07 +08:00
<%@ page language="java" import="java.util.*;" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<%@ page language="java" import="com.moment.utils.Entry;" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> 1,这里中间用了个逗号我不知道是不是有问题,你可以拆开来,或者用分号试一下(太久没用jsp了不知道); 2,你的类的.class文件在目录 /WEB-INF/classes/com/monent/utils/ 有吗 Entry.class 文件 3,它认为你是个包,你有这个文件夹在项目里吗?你导入其他类试一下 (问题是有,你仔细分析定位问题) |