⁉️چرا برای پروژه های بزرگ از جاوا استفاده کنیم؟
بسیاری از شرکت های بزرگ جاوا رو ترجیح میدن چون پایداره و علاوه بر این قابلیت اطمینان Sun Microsystems و IBM رو داره ، پشتیبانی فنی آنلاین( که شامل ایران نمیشه ) و دارای فریم ورک های اپن سورسی مانند Hibrrnate ، Spring و ... می باشد.
هرچند نیازی به گفتن نیست که مانند بیشتر برند ها در بازار در نهایت شخص خودش تصمیم میگیره که برای پروژه بعدی خود از کدوم زبان ، دیتابیس و بستر استفاده کنه که همه ی نیاز هاشو برطرف کنه.
@iceCodeTeam
بسیاری از شرکت های بزرگ جاوا رو ترجیح میدن چون پایداره و علاوه بر این قابلیت اطمینان Sun Microsystems و IBM رو داره ، پشتیبانی فنی آنلاین( که شامل ایران نمیشه ) و دارای فریم ورک های اپن سورسی مانند Hibrrnate ، Spring و ... می باشد.
هرچند نیازی به گفتن نیست که مانند بیشتر برند ها در بازار در نهایت شخص خودش تصمیم میگیره که برای پروژه بعدی خود از کدوم زبان ، دیتابیس و بستر استفاده کنه که همه ی نیاز هاشو برطرف کنه.
@iceCodeTeam
مطالب پایین نحوه استافده از JShell در jdk9 را نشان میدهد به صورتی که میتونید کد های جاوارو در یه فایل متنی بنویسید و با استفاده از JShell اجرا کنید.
@jDevelope
@jDevelope
By now, most of you might have heard about JDK9 JShell. If you are not aware of it, please click here. In this article, I am going to use JShell to show you how to execute Java code like Unix script.
Let me show you an example first and then go into details:
Open a file and save it with .txt by naming it as java_shell_code.txt
Write some Java code and execute the below command by passing the file name as an argument. You don't need to declare a class. Just write statements or create methods and enjoy functional programming.
java ex.jshell.extension.JShellScriptExecutor ./java_shell_code.txt
@jDevelope
Let me show you an example first and then go into details:
Open a file and save it with .txt by naming it as java_shell_code.txt
Write some Java code and execute the below command by passing the file name as an argument. You don't need to declare a class. Just write statements or create methods and enjoy functional programming.
java ex.jshell.extension.JShellScriptExecutor ./java_shell_code.txt
@jDevelope