Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anyone know because all the places I've tried seem to timeout!
You can download JSTL 1.1 here and JSTL 1.2 here.
See also:
JSTL wiki page
http://jstl.java.net/download.html
It's been split into two separate JAR files: jstl-api.jar and jstl-impl.jar.
In the past, there was something like: https: //jstl.dev.java.net/download.html. But since a few days, there is something happening on dev.java.net.
Java.net will be modified, read this: http: //www.java.net/. So I think we have to wait. I also found: http: //java.net/projects/help/pages/RequestedProjects.
Maybe this is helpful.
Another option is to look into the maven repository: http://repo1.maven.org/maven2/javax/servlet/
http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
None of the mirrors work on the other page
You can downlod JSTL jar from this link
http://findjar.com/jar/javax/servlet/jstl/1.2/jstl-1.2.jar.html
If youre using Maven, here's something for your pom.xml file
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
Visit Here to get your required jar files of JSTL.
and to get any of your required jar files visit HERE
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
Apparently I need wls-api.jar to compile the following:
import weblogic.security.principal.WLSUserImpl;
I've downloaded and extracted wls1213_dev.zip and added weblogic-classes.jar, but the WLSUserImpl class seems to be elsewhere.
Where can I find wls-api.jar (or the right jar file)?
According to Oracle docs (https://docs.oracle.com/middleware/1212/wls/WLPRG/overview.htm#WLPRG134):
The wls-api.jar file is located in the wlserver/server/lib directory
of your WebLogic Server distribution
Sorry to ask you these basic questions first but, did you look at this?
Which JAR contains the weblogic.servlet.security.ServletAuthentication class?
Did you also check the classpath to your server libs (and checked if
provided)?
If you are using Maven, do you have the following
<dependency>
<groupId>weblogic</groupId>
<artifactId>wls-api</artifactId>
<version>${weblogic.version}</version>
<scope>provided</scope>
</dependency>
Ref : Using maven as build tool for Weblogic 10.3
I don't mean to offend you by underlining these simple checks first but that would be the first things I would have done. Let me know. Thx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am trying to download hibernate [hopefully version 3] from http://www.hibernate.org/hibernate/downloads and for last two days I am getting either 404 or 500 from a proxy server some how. It appears that visiting above url spawns a prox server request to somewhere else. I have tried this from different IPs, from remote locations but this refuses to work.
On the other hand I downloaded the source from sourceforge and then tried to compile, which again did not worked for some other reason. I could not find compiled hibernate 3 on sourceforge.
So My question is : Is there some other reliable source of hibernate ?
Does the link work for you guys.
you may download jars in maven repository.
Here is the link:
http://mvnrepository.com/artifact/org.hibernate/hibernate-core
I download my hibernate jar files from this address Here It has version 2,3 and 4.check it.
You can download hibernate from here. It is a download with dependencies. This is maybe better than the single core file: https://jar-download.com/explore-java-source-code.php?a=hibernate-core&g=org.hibernate&v=5.2.0.Final&downloadable=1
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Has anybody used the HQAPI to fetch the metrics of a resource programmatically? I want a sample code which uses the HQAPI to fetch the metrics of a resource.
There is a treasure trove of examples here
http://svn.hyperic.org/projects/hqapi/trunk/src/org/hyperic/hq/hqapi1/test/
and I am trying to put together some explanation here
http://www.javamonamour.org/2012/05/creating-alert-recovery-with-hyperic.html
They seem to have plenty of examples on Github e.g.
https://github.com/hyperic/hqapi/blob/7b19d6b0ebfb8cfb2903d4a495ab0368ba3e6aeb/src/org/hyperic/hq/hqapi1/test/Metric_test.java
Also there is an example in their docs:
http://support.hyperic.com/display/DOC/HQApi+Java+API
The are actually a lot of ways you could do this:
Run the plain old hqapi.sh resource list (or like) commands, which could be very slow.
Paste directly in your browser window a restful URL:
http://__host__:7080/hqu/hqapi1/alert/find.hqu?begin=1344004728555&end=1444004728999&count=100&severity=1¬Fixed
Use curl to achieve that:
curl -u hqadmin "http://__host__:7080/hqu/hqapi1/alertdefinition/listDefinitions.hqu?resourceId=10201"
I personally like using a scripting language like Python to do this.
Then there is Groovy script, which you can run in a Groovy console under the administration tab. Check the hqapi1 hqu plugin.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Where can I find the source code of the Java API?
Install the JDK. The sources for the public classes are packaged in src.zip.
OpenJDK code: Browse here
For example, if you looking for AWTUtilities.java, go here in the above link:
src› share› classes› com› sun› awt› AWTUtilities.java
OpenJDK project homepage where they have all the instructions of downloading and building it
OpenJDK Mercurial Repo hosted here
JDK Documentation here
You can also find them online at http://www.docjar.org/.
I'm not sure what you mean, but here is the API documentation
Source for OpenJDK implementation
Presumably you mean the core libraries?
http://openjdk.java.net/groups/core-libs/
You might this alternative useful too:
http://www.gnu.org/software/classpath/
If you only need to look up some classes, the following page is also a good source:
http://grepcode.com
It works for different versions of various libraries.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I know that IntelliJ has an option to select all the code in a JSP file, right click, and select "format". This nicely formats all HTML, CSS, scriptlets and JSTL tags in a JSP file.
Can Eclipse do this?
If not, what is the best free Eclipse plugin that does the same?
With the Web Tool Plateform plateform (on eclipse.org website), this is very simple : in the JSP editor tab, right click->source->format (or Shift+Ctrl+F)
I use the EclipseHTMLEditor from Project Amateras. Be sure to set "Amateras JSP Editor" as default editor for file type "*.jsp" in Window > Preferences > General > Editors > File Associations.
UPDATE: As of today, March 27th 2015, Project Amateras seems stale. However latest releases of WTP are much improved and surely worth a try. Thanks to #Vogel612 for the info.
I found this one on eclipse plugin central.
Looks like an all in one kind of formatter. I haven't tried it myself but it might be what you are looking for
NXFormat