博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSP笔记
阅读量:6695 次
发布时间:2019-06-25

本文共 855 字,大约阅读时间需要 2 分钟。

JSP链接区分大小写

如果在eclipse项目中改了文件名,要在tomcat对应目录下的Catalina中的对应目录下把之前的文件删除,会重新编译生成,否则会报:java.lang.NoClassDefFoundError: 这个错误。必须要删除,只是修改文件名或者在java文件中修改类名,没有作用。

<Context path="" docBase="D:\eclipseWorkspace\MentalArithmetic\WebContent" debug="0" privileged="true">
</Context>

If you spell the class name wrong or the class isn't on the classpath, the JSP processor will say it "resolves to a package" rather than that it doesn't exist. This was driving me crazy today as I kept not seeing a typo I'd made.

JSP页面中,随便写个导入类的语句,如<%@ page import="a.b.c"%>,就会报下面这个错

Only a type can be imported. a.b.c resolves to a package
无论a.b.c是否真的存在,这说明系统没有找到a.b.c这个类,那么问题就集中在“如何让系统找到自定义的类”。

微软真的很伟大

null是基本类型,java的几个基本类型如下:

Literal:
IntegerLiteral
FloatingPointLiteral
BooleanLiteral
CharacterLiteral
StringLiteral
NullLiteral
对于这些类型的比较,要用==,其它的用equals
.net中的字符串比较可以使用==,应该是微软做的语法糖。

 

转载地址:http://lyvoo.baihongyu.com/

你可能感兴趣的文章
C语言标准库
查看>>
pip安装包
查看>>
hibernate5.x版本org.hibernate.MappingException: Unknown entity问题
查看>>
linux每日命令(18):whereis命令
查看>>
discuz的安装
查看>>
《算术探索》(高斯) 第14目
查看>>
Python模块——hashlib
查看>>
本周学习小结(18/03 - 24/03)
查看>>
猜数游戏
查看>>
关于 MVVMLight 设计模式系列
查看>>
用 js 写一个获取随机颜色的程序
查看>>
模块化开发之Amd规范和Cmd规范
查看>>
第19件事 财务分析
查看>>
python基础===open()文件处理使用介绍
查看>>
debounce与throttle区别
查看>>
StringList 自定义快速排序
查看>>
微信开发者工具的快捷键
查看>>
appium 链接真机后,运行代码,但是APP并没有启动
查看>>
局域网发送信息
查看>>
Vector3.Dot 判断方位
查看>>