Java Skills for Job #Java Short Notes

  • AWT
  • Swing
  • JSF
  • Applet
  • Midlet
  • JDBC
  • JSP
  • Servlet
  • Java Beans
  • EJB
  • J2ME
  • RMI
  • JNDI
  • Network Programming
  • XML processing
  • Web Services and SOAP
  • JavaFX
  • Java Connector
  • Java Mail
  • Java AVK (Application Verification Kit)
  • Java ACC
  • Java Message Service API
  • Java Persistence API
  • Java Transaction API
  • Java Transaction Service
  • Hibernate
  • Struts
  • Spring
  • Eclipse
  • Netbeans IDE
  • IntelliJ
  • IBM Websphere RAD Workspace
  • BEA Weblogic Workspace
  • Tomcat
  • JBOSS
  • Websphere
  • BEA Weblogic
  • Sun Java Server
  • Ant
  • Maven

From: http://sitestree.com/?p=5031
Categories:Java Short Notes
Tags:
Post Data:2009-03-21 02:13:26

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Video Tutorials on Different Java technologies #Java Short Notes

The following video tutorials contains videos on

  • Basic and Advanced Servlet and JSP Development
  • Understanding and Developing EJBs
  • Portal Development and Administration
  • WebSphere Application Server Administration
  • Struts Development with WSAD 5.1

Video Tutorials

JSPs with IRAD
The HttpSession
Creating JavaBeans
Testing with JUnit
Advanced Web Coding
JSPs with jsp:usebean
Obtaining User Input
Creating Custom Tags
JSP &Servlet Filters
Lifecycle Listeners
EJB Development
SF Session Beans
SL Session Beans
Testing EJBs (UTE)
BMP Entity Beans
Setting Up JMS
MDB Development
EJB Clients & JNDI
WebSphere Portal
What is the Portal?
A JSR-168 Portlet
A 168 Portlet to a JSP
Theme Development
Web Clipping
Managing Pages
Managing Users
Page Blocking
Traversal Permissions
WebSphere App Server
Federating Nodes (5.1)
Clustering Servers (5.1)
LDAP & WAS Security
Lock and Load Deploy
WSAD 5 & Struts
Adding Struts Support
Creating Action Classes
Struts Forms & Validation
Providing Feedback
i18n & l10n with Struts

From: http://sitestree.com/?p=5029
Categories:Java Short Notes
Tags:
Post Data:2012-10-10 12:47:42

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Lesson 2: Your First Hibernate Example Program #Java Short Notes

From: http://sitestree.com/?p=5025
Categories:Java Short Notes
Tags:
Post Data:2009-01-25 00:39:54

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Lesson 1: Just Step by Step Hibernate #Java Short Notes

From: http://sitestree.com/?p=5024
Categories:Java Short Notes
Tags:
Post Data:2012-09-30 11:06:00

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

What is Java Spring Framework? #Java Short Notes

According to the Spring Framework Reference Documentation (springframework.org):

“…Spring provides a light-weight solution for building enterprise-ready applications, while still supporting the possibility of using declarative transaction management, remote access to your logic using RMI or web services, mailing facilities and various options in persisting your data to a database. Spring provides an MVC framework, transparent ways of integrating AOP into your software and a well-structured exception hierarchy including automatic mapping from proprietary exception hierarchies.

Spring could potentially be a one-stop shop for all your enterprise applications, however, Spring is modular, allowing you to use parts of it, without having to bring in the rest…”

From: http://sitestree.com/?p=5020
Categories:Java Short Notes
Tags:
Post Data:2011-03-17 06:38:10

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

What is Hibernate? #Java Short Notes

Why Hibernate?
A database is an integral part of many different types of applications. Standalone single-person applications to multi-user distributed business and enterprise applications make extensive use of databases. Many high end technology applications in industries including telecommunications, and surveillance systems make extensive use of databases. However, in recent years, the use of database has become complex in nature as the applications and their needs are complex themselves. In terms of database integration with persistence,J2EE EJB standard is the most successful strategy [Ref:Book:Pro Hibernate 3 by Apress]. Though, you can still use the SQL based access.

Hibernate is just another great way to access the backend databases. Hibernate complements many of the limitations of the EJB standard. EJB3 has followed Hibernate to provide persistence in EJB3.Hibernate provides Object Relational Mapping with persistence. Using Hibernate, you can access databases without making use of SQLs from your applications.The query can be done in the object level not in the database/sql level. The benefits are application programmers don’t need to be bothered with SQL and backend stuffs, Hibernate provides persistence as well. However, it should not be regarded as the best solution for all types of database applications. For many, applications using the SQL based strategies are more appropriate. Using EJBs is also an option.

Latest version of Hibernate is 3, it is a major change from version 2. You can download it from http://www.hibernate.org. Check left menu for the download option. Download the production version of the latest release. Hibernate works with most databases as the backend. Usually, Hibernate sits on top of the driver for the corresponding DBMS and provides the abstraction to the application programmers.

Hibernate Development
Supports both .Net and J2EE platform

Tools required

JDK
Hibernate
Database like HSQL, MySQl, SQL Server
Ant tool

Download Hibernate:
http://hibernate.org/ from left menu download

Steps in developing Hibernate 3 applications
1. Create the configuration files to provide database connection related parameters
2. Create the Java class files [the POJO for persistence]
3. Create a mapping file between a table and the class4. From the mapping files, you can create SQL statements to create your database schema in the backend. Hibernate provides the tool SchemaExport for the purpose
5. Write the application From: http://sitestree.com/?p=5017
Categories:Java Short Notes
Tags:
Post Data:2007-05-06 15:54:46

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Video byJustEtc: An example EJB application in BEA Weblogic Platform #Java Short Notes

Video Training by JustEtc: An example EJB application in BEA Weblogic Platform

From: http://sitestree.com/?p=5015
Categories:Java Short Notes
Tags:
Post Data:2008-04-26 16:58:07

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

#Engineering: #Canada: #Job/Contract/Project: Any #Engineering: #Computer, #Electrical, #Electronics, #Civil, #Chemical, #Mechanical, #Naval, #Biomedical, and misc Engineering

Date Posted:2021-07-20 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

  1. construction-services-10004
  2. Electrical 1
  3. RFC – Northside Health Center Trade Package 02 – Early Siteworks – Services, Grading and Electrical
  • electrical-and-electronics-10006
  • Electrical 1
  • architect-and-engineering-services-10048
  • Electrical 1
  • Engineering consulting services for Kingston Road from 200m west of Dixie Road to 200m east of Bainbridge Drive detailed design in the City of Pickering
  • Engineering Services for Headon Reservoir and Rechlorination Facility Rehabilitation, in the City of Burlington
  • Install Doorway to Mechanical Pit for Elevator Maintenance
  • If & As Required Geotechnical Engineering Review Services
  • NPP – W6399-21-LF84/B – TSPS – One (1) Intermediate Professional Engineer (P.Eng). (W6399-21-LF84/B)
  • Professional Engineering Services – Street Reconstruction No. 4
  • environmental-services-10050
  • If & As Required Geotechnical Engineering Review Services
  • natural-resources-services-10051
  • SP22TED251 – Mechanical Site Preparation – Excavator – Kamloops
  • Mechanical Site Preparation – Excavator – Kamloops Field Team
  • operation-of-government-owned-facilities-10039
  • Engineering Services for Intersection Improvement Program
  • professional-administrative-and-management-support-services-10040
  • Mechanical Engineering Services Consultant
  • Engineering & Consulting Services – New Organics Processing Facility
  • If & As Required Geotechnical Engineering Review Services
  • research-and-development-r-d-10036
  • Software reverse engineering prototypes development (W7701-217332/A)
  • Engineering Services for Intersection Improvement Program
  • special-studies-and-analysis-not-r-d-10047
  • Engineering and Architectural Services
  • undefined-10055
  • RQQ-2020-NAFA-487: Engineering Services for Mount Joy Passing Track
  • Keywords Used:engineer,civil,mechanical,electrical,electronics,mechatronics,naval,biomedical,computer engineer,software engineer,civil engineer,biomedical,electrical engineer,electronics engineer,mechanical engineer,metallurgical,chemical engineer,industrial engineer,communications engineer,quality assurance engineer,Aerospace engineer,aeronautical engineer,Engineering manager,Agricultural Engineer,Automotive Engineer,Environmental Engineer,Geological Engineer,Marine Engineer,Petroleum Engineer,Acoustic Engineer,Acoustic Engineer,Aerospace Engineer,Agricultural Engineer,Applied Engineer,Architectural Engineer,Audio Engineer,Automotive Engineer,Biomedical Engineer,Chemical Engineer,Civil Engineer,Computer Engineer,Electrical Engineer,Environmental Engineer,Industrial Engineer,Marine Engineer,Materials Science Engineer,Mechanical Engineer,Mechatronic Engineer,Mining and Geological Engineer,Molecular Engineer,Nanoengineering,Nuclear Engineer,Petroleum Engineer,Software Engineer,Structural Engineer,Telecommunications Engineer,Thermal Engineer,Transport Engineer,Vehicle Engineer,engineering

    #Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-07-20

    Apply yourself, or submit others as a candidate, Build a recruitment team to submit others as a candidate, submit RFP to be considered for projects in future, Try to become a vendor so that you are asked to submit consultants/resources in future

    1. construction-services-10004
    2. ADM REM Station – Technical Consultant Engagement
  • energy-10007
  • ADM REM Station – Technical Consultant Engagement
  • Source List (SL) for Environmental Consulting Services
  • Prime Consultant for Main Building Foundation Repairs & Site Grading
  • architect-and-engineering-services-10048
  • ADM REM Station – Technical Consultant Engagement
  • Engineering consulting services for Kingston Road from 200m west of Dixie Road to 200m east of Bainbridge Drive detailed design in the City of Pickering
  • Consulting Services: Archibald Drive Storm Sewers
  • RFP for PRIME ARCHITECTURAL CONSULTANT SERVICES for CALGARY ROCKYVIEW GENERAL HOSPITAL Intensive Care Unit/ Coronary Care Unit/ Gastrointestinal Clinic Redevelopment
  • NPP – W6399-21-LF84/B – TSPS – One (1) Intermediate Professional Engineer (P.Eng). (W6399-21-LF84/B)
  • communications-photographic-mapping-printing-and-publication-services-10042
  • ADM REM Station – Technical Consultant Engagement
  • educational-and-training-services-10043
  • Assessment Consulting Service for the Assured Income for the Severely Handicapped (AISH) Program for the Province of Alberta
  • Anti-Racism & Anti-Discrimination Exploratory Working Group (AREWG) Consultant
  • environmental-services-10050
  • ADM REM Station – Technical Consultant Engagement
  • financial-and-related-services-10038
  • ADM REM Station – Technical Consultant Engagement
  • Group Insurance Consulting (EP899-220446/A)
  • RQQ-2020-FACA-499: VOR + 2nd Stage- Provide Accounting & Tax Consulting Services
  • information-processing-and-related-telecommunications-services-10049
  • Business Consulting and Risk Management (20210074)
  • TSPS 2.5 – Business Process Consultant (Senior) (W0152-22-AA034)
  • TSPS 2.3 Business Consultant (Senior) (W0152-22-AA035)
  • Project: tender_15205 – 21-004P Cloud-Based Web Services
  • professional-administrative-and-management-support-services-10040
  • Mechanical Engineering Services Consultant
  • ADM REM Station – Technical Consultant Engagement
  • Consulting Services – Diversity and Inclusion Strategy
  • Archaeological Consulting Services
  • CONSULTING SERVICES FOR THE DESIGN OF AN ACTIVE TRANSPORTATION MASTER PLAN
  • Engineering & Consulting Services – New Organics Processing Facility
  • special-studies-and-analysis-not-r-d-10047
  • ADM REM Station – Technical Consultant Engagement
  • CONSULTING SERVICES FOR STREETSCAPE ASSESSMENT
  • transportation-travel-and-relocation-services-10044
  • ADM REM Station – Technical Consultant Engagement
  • utilities-10041
  • ADM REM Station – Technical Consultant Engagement
  • #Sensor: #Canada: #Job/Contract/Project: #Sensor, #Tracking, #Fusion, #Estimation, #Surveillance, #sensor network, #target #tracking, #security 2021-07-20

    Date Posted:2021-07-20 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

    1. construction-services-10004
    2. Request for Tender- Recapitalization, New Sidewalk & Traffic Signal Upgrade- Millwood Drive, Stokil Drive, & Beaver Bank Road- Central Region
  • aerospace-10005
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • armament-10027
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • Signal Smoke Marine, Orange (W8486-217390/A)
  • communications-detection-and-fibre-optics-10031
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • LEED Recognition Display
  • construction-products-10032
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • LEED Recognition Display
  • edp-hardware-and-software-10034
  • Barracuda Email Security Gateway Subscription Licenses
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • electrical-and-electronics-10006
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • LEED Recognition Display
  • engines-turbines-components-and-accessories-10008
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • fabricated-materials-10009
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • fire-fighting-security-and-safety-equipment-10010
  • Smart Anti-Loitering and Security System
  • food-preparation-and-serving-equipment-10012
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • furniture-10013
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • industrial-equipment-10014
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • machinery-and-tools-10015
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • marine-10017
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • medical-equipment-supplies-and-pharmaceuticals-10018
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • miscellaneous-goods-10019
  • Employee Recognition
  • office-equipment-10020
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • office-stationery-and-supplies-10021
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • scientific-instruments-10024
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • textiles-and-apparel-10028
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • LEED Recognition Display
  • transportation-equipment-and-spares-10029
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • architect-and-engineering-services-10048
  • RFP – Building Perimeter – Access Point Security
  • communications-photographic-mapping-printing-and-publication-services-10042
  • LEED Recognition Display
  • custodial-operations-and-related-services-10037
  • LEED Recognition Display
  • environmental-services-10050
  • LEED Recognition Display
  • information-processing-and-related-telecommunications-services-10049
  • LEED Recognition Display
  • lease-and-rental-of-equipment-10045
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • research-and-development-r-d-10036
  • Surveillance of Space 2 Ground-Based Optical System Request for Information (W8474-207923/B)
  • ITS Operational Security Services
  • utilities-10041
  • LEED Recognition Display
  • undefined-10055
  • Employee Recognition
  • Keywords Used:sensor,fusion,sensor network,tracking,target tracking,surveillance,self driving car,self-driving,estimation,security,signal processing,image processing,autonomouse vehicle,facial recognition,signal,recognition,sensor fusion