Wednesday, 25 January 2017
Monday, 12 December 2016
The internal connection pool has reached its maximum size and no connection is currently available!
You should comment this line in hibernate.cfg.xml
<!-- <property name="connection.pool_size">1</property> -->
<!-- <property name="connection.pool_size">1</property> -->
Saturday, 10 December 2016
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
You would have used this way
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
You should use this, prefix should come first
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Main thing is you will be using tomcat 7 or higher version. You need to use JSTL - 1.2.jar
you might be simply using JSTL.jar.
just put the JSTL-1.2.jar in lib folder..
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
You should use this, prefix should come first
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Main thing is you will be using tomcat 7 or higher version. You need to use JSTL - 1.2.jar
you might be simply using JSTL.jar.
just put the JSTL-1.2.jar in lib folder..
how to close the port in computer?
To check the ports open in your computer,
go to cmd, type netstat.
you will get all the ports used in the computer..
If you want to close the port used, netstat -a -n -o in cmd...
you will get the PID. Note this PID go to task manager and kill it..
go to cmd, type netstat.
you will get all the ports used in the computer..
If you want to close the port used, netstat -a -n -o in cmd...
you will get the PID. Note this PID go to task manager and kill it..
Sunday, 4 December 2016
How to show current Workspace in Eclipse?
Go to eclipse folder,
1.Edit the eclipse.ini.
2.add -showlocation
3.This should be before -startup
-showlocation
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212
-product
1.Edit the eclipse.ini.
2.add -showlocation
3.This should be before -startup
-showlocation
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212
-product
Subscribe to:
Posts (Atom)