随笔分类 - java
java中的知识点,一些java的例子
摘要:三月 15, 2017 2:23:41 下午 org.apache.tomcat.util.digester.SetPropertiesRule begin警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting prop
阅读全文
摘要:criteria.setCacheable(true); 一下是Criteria的底层源代码 /** * Enable caching of this query result, provided query caching is enabled * for the underlying sessi
阅读全文
摘要:严重: Failed to initialize end point associated with ProtocolHandler ["ajp-bio-8090"]java.net.BindException: Address already in use: JVM_Bind <null>:809
阅读全文
摘要:什么时候用Integer : 如果该属性所对应的数据库的字段是主键或者是外键时,用Integer;因为Integer的默认值为null,数据库的主键或者外键不能为空,但是可以为null 什么时候用int : 如果表示数量用int,因为int的默认值为0,它不能为null或者空
阅读全文
摘要:2017-03-02 10:08:03,112 [localhost-startStop-1] ERROR org.springframework.web.servlet.DispatcherServlet - Context initialization failedorg.springframe
阅读全文
摘要:新的错误出现 spring-mvc.xml文件 <mvc:resources mapping="/static/**" location="/static/" /> <mvc:resources mapping="/upload/**" location="/upload/" /> cvc-comp
阅读全文
摘要:点击项目名称>>>点击Buid Path>>>点击右侧add library>>>点击Server Runtime>>>点击next>>>然后点击(选择)tomcat 7>>>finish>>>Apply>>>finish 这样就ok了!!!
阅读全文
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="http://user-20160821pd:8088/com.jdbc2/"> <title>My JSP 'inde
阅读全文
摘要:MyEclipse 打开后有时候莫名的在server窗口里抛出“Could not create the view: An unexpected exception was thrown”错误,解决办法: 打开myeclipse所在的wordspace文件夹,在下面子文件夹 .metadata\.p
阅读全文
摘要:File->New->File->点击->在编辑处出输入:文件名.properties 文件的主要功能连接数据库,例如: driver=oracle.jdbc.OracleDriverurl=jdbc:oracle:thin:@localhost:1521/XEusername=a001passwo
阅读全文
摘要:Unrecognized Windows Sockets error: 0: JVM_Bind 异常解决办法 java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind 此异常的原因是服务器端口被占用 所以解决办
阅读全文
摘要:重载(Overload): (1)方法重载是让类以统一的方式处理不同类型数据的一种手段。多个同名函数同时存在,具有不同的参数个数/类型。重载Overloading是一个类中多态性的一种表现。 (2)Java的方法重载,就是在类中可以创建多个方法,它们具有相同的名字,但具有不同的参数和不同的定义。调用
阅读全文
摘要:final final—修饰符(关键字)如果一个类被声明为final,意味着它不能再派生出新的子类,不能作为父类被继承。因此一个类不能既被声明为 abstract的,又被声明为final的。将变量或方法声明为final,可以保证它们在使用中不被改变。被声明为final的变量必须在声明时给定初值,而在
阅读全文

浙公网安备 33010602011771号