Java学习笔记
独孤菜鸟
这个作者很懒,什么都没留下…
展开
-
java 记录final 和static fianl初始化
final 必需有对象时才能使用该变量public class Person { public String name; public int age; public final String testfianl;/*Person类种的一个fianl变量,该常变量初始化可以有两种原创 2011-07-16 17:20:49 · 524 阅读 · 0 评论 -
java pass by value 。do not exist pass by reference
java pass by value 。do not exist pass by reference 参数传递的只有一种那就是 按值传递 这值 可以分为两种类型 一种就是源生类型 如 int float 一种就是引用类型 如类的对象 public class T原创 2011-07-31 14:39:58 · 390 阅读 · 0 评论 -
static数据的初始化
class Bowl{ Bowl(int marker){ System.out.println("Bowl :("+marker+")"); } void f1(int marker){ System.out.println("f1():"+marker);原创 2011-08-03 14:38:57 · 817 阅读 · 0 评论 -
web 项目从数据库读取数据时出现乱码的问题的解决
1.修改数据库的编码方式: mysql> show variables like '%char%'; +--------------------------+-------------------------- | Variable_name | Value +--------------------------+-------------------------原创 2012-04-25 00:31:56 · 3331 阅读 · 0 评论 -
tomcat 服务已经使用端口,提示错误和
SEVERE: Servlet.service() for servlet [obliquid.servlet.Index] in context with path [/cp] threw exception [The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or原创 2012-04-28 13:56:34 · 571 阅读 · 0 评论 -
如何防止struts配置文件的膨胀
http://blog.csdn.net/pyylyj/article/details/7393485 1、配置多个config文件,逗号分隔 2、在struts-config内用* 通配符匹配每个地址,各个不同的action用通配符来解决,防止配置文件的膨胀 3、使用DispatchAction和它的子类MappingDispatc转载 2012-06-02 11:01:04 · 398 阅读 · 0 评论 -
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
在manay-to-one 中设置laszy=“false”原创 2012-08-09 19:27:20 · 457 阅读 · 0 评论