author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 01 Apr 2014 19:05:48 +0300 | |
changeset 1570 | e98df1173d31 |
parent 1563 | 9b4441d30cac |
child 1629 | 32f8c509119d |
permissions | -rw-r--r-- |
1213 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1270
diff
changeset
|
2 |
.. include:: HEADER.rst |
1213 | 3 |
|
4 |
================ |
|
5 |
Java language. |
|
6 |
================ |
|
1346
a2fbf50a43f4
Fix: Has no 'contents::' directive.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
7 |
.. contents:: |
1213 | 8 |
|
9 |
Class version. |
|
10 |
============== |
|
11 |
||
1216 | 12 |
========= ====== ===================== |
13 |
major minor Java platform version |
|
14 |
========= ====== ===================== |
|
15 |
45 0x27 3 1.0 |
|
16 |
45 0x27 3 1.1 |
|
17 |
46 0x28 0 1.2 |
|
18 |
47 0x29 0 1.3 |
|
19 |
48 0x30 0 1.4 |
|
20 |
49 0x31 0 1.5 |
|
21 |
50 0x32 0 1.6 |
|
22 |
========= ====== ===================== |
|
1213 | 23 |
|
1216 | 24 |
where ``minor`` and ``major`` are value of 6 and 8 bytes in .class file:: |
25 |
||
26 |
0xCA, 0xFE, 0xBA, 0xBE, 0x00, minor, 0x00, major |
|
1213 | 27 |
|
28 |
Access modifiers. |
|
29 |
================= |
|
30 |
||
31 |
Public. |
|
32 |
------- |
|
33 |
||
34 |
* Public class is visible in other packages. |
|
35 |
* Public field is visible everywhere (class must be public too). |
|
36 |
||
37 |
Private. |
|
38 |
-------- |
|
39 |
||
40 |
* Private variables or methods may be used only by an instance of the same |
|
1216 | 41 |
class that declares the variable or method |
1213 | 42 |
* A private feature may only be accessed by the class that owns the feature. |
43 |
||
44 |
Protected. |
|
45 |
---------- |
|
46 |
||
47 |
* Is available to all classes in the same package and also available to all |
|
1216 | 48 |
subclasses of the class that owns the protected feature. |
1213 | 49 |
* This access is provided even to subclasses that reside in a different |
1216 | 50 |
package from the class that owns the protected feature. |
1213 | 51 |
|
52 |
default. |
|
53 |
-------- |
|
54 |
||
55 |
What you get by default ie, without any access modifier. |
|
56 |
||
57 |
* It means that it is visible to all within a particular package. |
|
58 |
||
59 |
static. |
|
60 |
------- |
|
61 |
||
62 |
* Static means one per class, not one for each object no matter how many |
|
63 |
instance of a class might exist. This means that you can use them without |
|
64 |
creating an instance of a class. |
|
65 |
* Static methods are implicitly final, because overriding is done based on |
|
66 |
the type of the object, and static methods are attached to a class, not an |
|
67 |
object. |
|
68 |
* A static method in a superclass can be shadowed by another static method in |
|
69 |
a subclass, as long as the original method was not declared final. |
|
70 |
* You can't override a static method with a nonstatic method. |
|
71 |
||
72 |
final. |
|
73 |
------ |
|
74 |
||
75 |
* A final class can't be extended ie., final class may not be subclassed. |
|
76 |
* A final method can't be overridden when its class is inherited. |
|
77 |
* You can't change value of a final variable. |
|
78 |
||
79 |
Exceptions. |
|
80 |
=========== |
|
81 |
||
82 |
A checked exception is some subclass of Exception (or Exception itself), |
|
83 |
excluding class RuntimeException and its subclasses. |
|
84 |
||
85 |
Unchecked exceptions are RuntimeException and any of its subclasses. Class |
|
86 |
Error and its subclasses also are unchecked. With an unchecked exception, |
|
87 |
however, the compiler doesn't force client programmers either to catch the |
|
88 |
exception or declare it in a throws clause. |
|
89 |
||
90 |
Inner classes. |
|
91 |
============== |
|
92 |
||
93 |
Nested top-level classes. |
|
94 |
------------------------- |
|
95 |
||
96 |
If you declare a class within a class and specify the static modifier, the |
|
97 |
compiler treats the class just like any other top-level class. |
|
98 |
||
99 |
Any class outside the declaring class accesses the nested class with the |
|
100 |
declaring class name acting similarly to a package. eg, outer.inner. Top-level |
|
101 |
inner classes implicitly have access only to static variables. There can also |
|
102 |
be inner interfaces. All of these are of the nested top-level variety. |
|
103 |
||
104 |
Member classes. |
|
105 |
--------------- |
|
106 |
||
107 |
Member inner classes are just like other member methods and member variables |
|
108 |
and access to the member class is restricted, just like methods and variables. |
|
109 |
This means a public member class acts similarly to a nested top-level class. |
|
110 |
||
111 |
The primary difference between member classes and nested top-level classes is |
|
112 |
that member classes have access to the specific instance of the enclosing |
|
113 |
class. |
|
114 |
||
115 |
Local classes. |
|
116 |
-------------- |
|
117 |
||
118 |
Local classes are like local variables, specific to a block of code. Their |
|
119 |
visibility is only within the block of their declaration. In order for the |
|
120 |
class to be useful beyond the declaration block, it would need to implement a |
|
121 |
more publicly available interface. |
|
122 |
||
123 |
Because local classes are not members, the modifiers public, protected, |
|
124 |
private, and static are not usable. |
|
125 |
||
126 |
Anonymous classes. |
|
127 |
------------------ |
|
128 |
||
129 |
Anonymous inner classes extend local inner classes one level further. As |
|
130 |
anonymous classes have no name, you cannot provide a constructor. |
|
131 |
||
132 |
64-bit problem. |
|
133 |
=============== |
|
134 |
||
135 |
http://www.java.com/en/download/faq/java_win64bit.xml |
|
136 |
Which version of Java should I download for my 64-bit Windows |
|
137 |
operating system? |
|
138 |
http://java.sun.com/javase/6/webnotes/install/system-configurations.html |
|
139 |
Java SE 6 Release Notes Supported System Configurations |
|
140 |
||
141 |
Java performance. |
|
142 |
================= |
|
143 |
||
144 |
http://java.sun.com/performance/reference/whitepapers/5.0_performance.html |
|
145 |
http://java.sun.com/performance/reference/whitepapers/6_performance.html |
|
146 |
||
147 |
Creating jar. |
|
148 |
============= |
|
149 |
:: |
|
150 |
||
151 |
$ jar cf myFile.jar *.class |
|
152 |
$ jar cmf myManifestFile myFile.jar *.class |
|
153 |
$ jar -cfe Main.jar foo.Main foo/Main.class |
|
154 |
||
1215 | 155 |
Profiling Java. |
1213 | 156 |
=============== |
157 |
:: |
|
158 |
||
159 |
$ java -Xprof com.vendor.product.Clazz |
|
1214
fe28cec0bb40
java -Xrunhprof:help
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1213
diff
changeset
|
160 |
$ java -Xrunhprof:help |
1213 | 161 |
|
1215 | 162 |
Debugging Java. |
163 |
=============== |
|
164 |
||
165 |
Compile with ``-g`` to preserve source code information:: |
|
166 |
||
167 |
$ javac -g -cp $CLASSPATH -sourcepath $SRC_DIR -d $BUILD_DIR |
|
168 |
||
169 |
To run Java program in debugger:: |
|
170 |
||
171 |
$ jdb -cp $CLASSPATH -sourcepath $SRC_DIR |
|
172 |
||
1238
53da16ba1897
-Xrunjdwp:transport
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1216
diff
changeset
|
173 |
To attach to Java application you firstly must run application with (use |
53da16ba1897
-Xrunjdwp:transport
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1216
diff
changeset
|
174 |
``dt_shmem`` for Windows and ``dt_socket`` for Linux):: |
1215 | 175 |
|
176 |
$ java -Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address=$PORT \ |
|
177 |
com.vendor.product.Clazz |
|
178 |
||
179 |
and then attach with debugger:: |
|
180 |
||
181 |
$ jdb -attach $PORT |
|
182 |
||
1269 | 183 |
Find jar by class. |
184 |
================== |
|
185 |
||
1270
af6cbb1b5888
http://mvnrepository.com/search.html?query=PKG
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1269
diff
changeset
|
186 |
http://mvnrepository.com/search.html?query=PKG |
1269 | 187 |
http://www.jarfinder.com |
188 |
||
1379 | 189 |
Java EE versions. |
190 |
================= |
|
191 |
||
192 |
======= ======== ======== ======== |
|
193 |
Java EE Servlet JSP JSTL |
|
194 |
======= ======== ======== ======== |
|
195 |
6 3.0 2.2 - |
|
196 |
5 2.5 2.1 1.2 |
|
197 |
1.4 2.4 2.0 1.1 |
|
198 |
1.2 2.3 1.2 1.0 |
|
199 |
======= ======== ======== ======== |
|
200 |
||
1380 | 201 |
To set servlet version check ``WEB-INF/web.xml``:: |
1379 | 202 |
|
203 |
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"> |
|
204 |
||
205 |
See: |
|
206 |
||
207 |
http://jcp.org/aboutJava/communityprocess/final/jsr315/index.html |
|
208 |
Servlet 3.0 Specification |
|
209 |
http://jcp.org/aboutJava/communityprocess/mrel/jsr154/index.html |
|
210 |
Servlet 2.5 Specification |
|
211 |
http://www.mularien.com/blog/2008/04/24/how-to-reference-and-use-jstl-in-your-web-application/ |
|
212 |
How to Reference and Use JSTL in your Web Application |
|
213 |
http://en.wikipedia.org/wiki/Java_EE_version_history |
|
214 |
Java EE version history |
|
1563
9b4441d30cac
Java interactive shell.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1380
diff
changeset
|
215 |
|
9b4441d30cac
Java interactive shell.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1380
diff
changeset
|
216 |
Java interactive shell. |
9b4441d30cac
Java interactive shell.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1380
diff
changeset
|
217 |
======================= |
9b4441d30cac
Java interactive shell.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1380
diff
changeset
|
218 |
|
9b4441d30cac
Java interactive shell.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1380
diff
changeset
|
219 |
Just use Groovy. ``bsh`` is older alternative without code completion. |