logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

虚拟机装完Centos7提示Initial setup of CentOS Linux 7 (core)

Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information(no user will be created) (license not accepted)Please make your choice from above ['q' to quit | 'c' to contin

linux 查看 java版本提示错误

卸载掉open jdk,重新安装sun1.7jdk,查看后提示:[root@localhost java]# java --versionUnrecognized option: --versionError: Could not create the Java Virtual Machine.Error: A fatal exception has occurred. Progr

Spring 框架简介(Spring AOP 和 IOC 容器入门)

Author: Naveen Balani (naveenbalani@rediffmail.com), 技术架构师, Webify Solutions在这由三部分组成的介绍 Spring 框架的系列文章的第一期中,将开始学习如何用 Spring 技术构建轻量级的、强壮的 J2EE 应用程序。developerWorks 的定期投稿人 Naveen Balani 通过介绍 Spring 框架开

#spring
spring中@Autowire用法解释

@Autowire默认按照类型进行注入@Autowired @Qualifier("personDaoxxx")这样就是按照名称进行装配@Autowired(required=true)必须注入值,不能为null,为false无论注入什么值都是null以上都是手工装配自动装配依赖对象对于自动装配,大家了解一下就可以了,实在不推荐大家使用。例子:autowire属性取值如下:byType:按类型装配

#spring#java
“cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'”错误的解决办法

把头文件换成如下即可: <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst

The content of element type "web-app" must match……问题之解决办法

在flex整合java生成的web.xml中添加引用servelet的代码就报错如下:The content of element type "web-app" must match "(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,servlet

#servlet#java
虚拟机装完Centos7提示Initial setup of CentOS Linux 7 (core)

Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information(no user will be created) (license not accepted)Please make your choice from above ['q' to quit | 'c' to contin

Hibernate包作用详解

摘要: Java开源项目Hibernate包作用详解 Hibernate一共包括了23个jar包,令人眼花缭乱。本文将详细讲解Hibernate每个jar包的作用,便于你在应用中根据自己的需要进行取舍 Java开源项目Hibernate包作用详解   Hibernate一共包括了23个jar包,令人眼花缭乱。本文将详细讲解Hibernate每个jar包的作用,便于你在应用中根据自己的需要进

#hibernate#log4j#jar +1
Could not open Hibernate Session for transaction; nested exception is org.hibernate.TransactionExcep

Mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空闲超过8个小时,Mysql将自动断开该 connection。connections如果空闲超过8小时,Mysql将其断开,而DBCP并不知道该connection已经失效,如果这时有 Client请求connection,DBCP将该失效的Connection提供给Client,将会造成上面的异常。

#hibernate#mysql#活动
Hibernate 入门教程(纯Eclipse版)

Hibernate是一个不依赖其他平台的轻量级的中间件,现在到处充斥着通过各种工具使用Hibernate进行开发的教程,如 MyEclipse, Ant, Maven等等,但是去掉这些工具,事实上,Hibernate仍然可以使用的。下面的讲解就是使用这种方法,让大家认识Hibernate。需要的软件有:Eclipse + MySQL + Hibernate。1. 准备jar包首先作为准

#hibernate#eclipse
到底了