search
HomeDatabaseMysql TutorialJSP+MySQL+MyEclipse+JavaScript项目开发

一、已知有一个建好的jsp 项目,我如何导入到 MyEclipse 中? 右击 PackageExplorer--import--General--ExistingProjectsintoWorkspace 。 该项目中 MySQL 端口: 3306 密码: wjdTomcat : 8080 二、为何要同时使用 Dreamweaver 与 MyEclipse ? 同时使用 D

一、已知有一个建好的jsp项目,我如何导入到MyEclipse中?

右击Package Explorer-->import-->General--> Existing Projects into Workspace

该项目中MySQL端口:3306  密码:wjd  Tomcat8080

二、为何要同时使用DreamweaverMyEclipse

同时使用DreamweaverMyEclipse是为了方便网站建设,Dreamweaver用来布局页面,而MyEclipse主要负责后台与前台中jsp的编码。在Dreamweaver中建立站点,把站点地址设置成MyEclipse的工程目录。

当在Dreamweaver中修改页面内容后,在MyEclipse中刷新整个项目;当在MyEclipse中修改页面内容后,在Dreamweaver中会出现“是否加载外部修改”,选择“是”,则保证了两边编辑同步。

三、已知一个sql文件,如何导入MySQL中?

    利用Navicat软件实现MySQL的界面化。打开Navicat新建连接,然后新建一个数据库,然后点击工具-->console-->sql类型文件中的内容复制到console编辑栏目中,点击回车,sql导入成功。

四、中文乱码问题

    1、在MyEclipse中设置JSP页面编码步骤如下:

依次点击windows-> Preferences-> MyEclipse-> Files&Editors-> JSP-> encoding:设置为ISO10646/Unicode(UTF-8)

2在JSP页面中:

 字符编码" pageEncoding="字符编码"%>   

字符编码"

保存JSP文件时的编码选项必须与jsp页面中的pageEncoding属性中配置的编码一致(或者在没有pageEncoding属性时与 contentType属性中配置的编码一致,两者的优先级是:pageEncoding>contentType),才不会出现乱码

3MySQL中也需要设置编码为utf-8

4、提交表单时在doPost函数中添加request.setCharacterParameter("utf-8"); 语句。

五、比较alert("msg")、 confirm("msg")、 prompt("msg")

警告框:window.alert(str)alert(str)

确认框:answer = window.confirm(str)answer = confirm(str)

提示框:returnStr = window.prompt(targetQuestion,defaultString)

       或prompt(targetQuestion,defaultString)

alert()confirm()的最大区别是alert()没有返回值,confirm()的返回值有两种,一个是return false,一个是return true。当confirm()的对话框跳出时,点击确认,返回值就是true,点击取消,返回的是false

六、新建JSP页面

新建JSP页面时,选择JSP(Basic templates)

jsp页面的静态部分,如HTMLCSS标记等,用来完成页面布局和显示样式;jsp页面的动态部分,如脚本程序、jsp

JSP声明举例如下:

   synchronized void count() {number++;}

%>  //此段代码声明了一个变量number和一个方法count,它们可以在整个jsp页面的任何位置上使用

    

你是第个访问本站的客户

JSP内建对象有:

1、out:传送信息到客户端的浏览器

          eg1out.println("

Hello,JSP

");

          eg2out.println(i)    

2、request:包装客户端的请求信息;

3、response:响应客户端的请求;

4、session:客户端请求的一次会话。会话从客户端连接到服务器开始,直到与服务器断开连接为止,期间都可以访问session对象的属性和方法。

七、request对象、response对象

    request对象 : 客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。

    response对象 : response对象包含了响应客户请求的有关信息,但在JSP中很少直接用到它。它是HttpServletResponse类的实例。

八、比较pagerequestsessionapplication的使用范围

在一个页面范围内:page

在一次服务器请求范围内:request

在一次会话范围内:session

在一个应用服务器范围内:application

document是js( ... )的对象,不是java( )的对象;

${...}取到的值是request范围内的值,跟request.getAttribute();效果一样。

之所以能取到值,是因为上面javascript中有定义,其实是存在page范围内的。

九、在JSP环境中配置使用FCKeditor

使用在线编辑器必不可少下述语句:

....

    FCKeditor oFCKeditor;

    oFCKeditor = new FCKeditor(request,"EditorDefault");

    oFCKeditor.setBasePath(request,getContextPath()+"/fckeditor/");

    oFCKeditor .setVaule("  ");

    out.println(oFCKeditor .create());

%>

十、MVC模式

当引入servlet后,由servlet完成控制的功能,同时jsp单纯地完成页面展示功能,这是MVC模式(Model-View-Controller:模型-视图-控制器)

采用jsp+javaBean+servlet模式设计:

1、一个index.jsp页面。例如用于显示留言簿内容,有一个表单用于提交留言簿内容;

2、一个servlet文件Operate.java。该文件接收表单提交的数据,一般进行三种处理:返回index.jsp所有留言信息;删除留言信息;插入留言信息。

3、一个封装了数据库操作的类DBOperate.java。该类的设计采用了singleton设计模式。

十一、Servlet配置

servlet/jsp Mapping URL : /servlet/add_servlet

File Path of web.xml : /项目名称/WebRoot/WEB-INF

十二、图片上传

    图片上传要实现的是:将图片上传到服务器保存到某个文件夹中,将图片名称放到数据库中,图片名称一般根据当前时间来重命名。详情见***

十三、JSP连接MySQL

DriverManager是管理JDBC驱动程序的接口,它通过getConnection方法获得Connection对象引用。Connection con = DriverManager.getConnection();

Statement是向数据库提交SQL语句并返回相应结果的工具。

ResultSet executeQuery(String sql) throws SQLException

Int executeUpdate(String sql) 返回发生改变的记录条数

Boolean execute(String sql)  判断是否执行成功

PreparedStatement接口继承Statement接口,当一条SQL语句需要稍加变化而反复执行时,通常采用PreparedStatement

十四、翻页功能



十五、error:Interger与int的转化

项目最后遇到的问题是Interger与int的转化,解决办法就是利用强制转换。

int count = Interger.valueof().intValue();

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to solve the problem of mysql cannot open shared libraryHow to solve the problem of mysql cannot open shared libraryMar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

Reduce the use of MySQL memory in DockerReduce the use of MySQL memory in DockerMar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin)Run MySQl in Linux (with/without podman container with phpmyadmin)Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overviewWhat is SQLite? Comprehensive overviewMar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Running multiple MySQL versions on MacOS: A step-by-step guideRunning multiple MySQL versions on MacOS: A step-by-step guideMar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.