Translate

середу, 29 квітня 2015 р.

#JUGLviv: 22-nd meetup: #Lessons from Implementing a Modern B2C System in Scala - May 7th


Чергова зустріч JUG вже незабаром!

7-го травня, о 19-00, за адресою вул. Наукова 7г,
приміщення тренінг-центру компанії Eleks.

вхід традиційно вільний

Talk:
Lessons from Implementing a Modern B2C System in Scala

Speaker:
Yuriy Guts
Solutions Architect and R&D Engineer at ELEKS.
Being a polyglot programmer, Yuriy is keen on exploring emerging technology and discovering hidden opportunities. He is an active member of Ukrainian IT community, being a frequent blogger at ELEKS R&D Blog, contributor to Lviv .NET User Group and teacher at Lviv Code School.

Yuriy in social media:





вівторок, 28 квітня 2015 р.

#ProjectFromScratch: SpringBoot - Part2


Hence I decided to create web application then there are two good options for quick start  SpringBoot or Spark
Spark is much simpler but SpringBoot brings Spring - I would say Spring is musthave framework nowdays so that my choice is SpringBoot. 
Following GettingStarted doc I'm creating two classes in web module: config called Application.java and our hello world controller HelloController.java
Usually I create package config for configs and package controller for controllers.

Except created classes we need add required SpringBoot dependency

Add to parent pom dependency management section in following way
 
 <properties>
  <spring.boot-version>1.2.3.RELEASE</spring.boot-version>
 </properties>
 
 <dependencymanagement>
  <dependencies>
   <dependency>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-starter-web</artifactid>
    <version>${spring.boot-version}</version>
   </dependency>
  </dependencies>
 </dependencymanagement>
and add to pom.xml in web module dependency itself
 
 <dependencies>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-web</artifactid>
  </dependency>
 </dependencies>
Now you can check if source is compilable with command mvn clean compile and run main on Application.java When you run main, embedded tomcat will start and listen port 8080. Check it with calling url http://localhost:8080

Syntax Highlight


Syntax highlight on our blog works thx to jquery-syntaxhighlighter
It's highlighter with easiest usage I've ever seen

#ProjectFromScratch: Multi module project - Part1


I will try creating new project from scratch step-by-step and write down all steps
If you see better approach or just easier way - please leave comment and I will modify article. Also you can suggest technologies and configurations for that new project
It allows all of us  to gain interesting collective experince

So lets start

Step1: Creating multimodule project with maven
Maven is still most popular build system that's why maven, but if anybody provides code for gradle I will add it to post also
 
//create parent
mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo.archetypes -DarchetypeArtifactId=pom-root -DarchetypeVersion=RELEASE
go inside parent folder and create child modules
 
//first module
mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=RELEASE
//create one more module
mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=RELEASE


I created two modules core for common things and web




середу, 8 квітня 2015 р.

#JUGLviv & #Morning@Lohika meetup



18-го квітня ми вперше проведемо нашу зустріч не в будень, а в суботу.
Це буде не звичайна подія, а спільний івент організований JUG Lviv та комюніті Morning@Lohika.

Отож зустріч відбудеться 
18-го квітня о 10-00 годині
за адресою Лемківська 15
компанія Lohika

Подія складатиметься з двох частин

1. Доповідь Сергія Моренця на тему Gradle. Write once, build everywhere  про новітню систему збирання проектів.
Сергій - наш гість з Одеси, засновник некомерційного освітнього проекту IT-Simulator, автор книжки Development of Java applications, java євангеліст та автор суто одеського тренінгу Java для рекрутерів :)

2. Доповідь Олега Скляренка на тему DSL in Action з прикладами та описом різноманітних проблем що вирішуються зі застосуванням DSL
Олег відомий у Львові java розробник з великою експертизою у багатьох прикладних сферах. В даний момент є одним з провідних девелоперів у компанії Lohika


Нагадую що вхід традиційно вільний
обов'язкова



неділю, 5 квітня 2015 р.

#JUGLviv: 21-st meetup: Summary


JUG Lviv щoиро дякує всім, хто прийшов на 21-шу зустріч.
Окрема подяка компанії Eleks, яка гостинно нас прийняла.

Дякуємо Yuriy Luchkiv, за доповідь!
Слайди презентації можна завантажити тут.

Також, нагадуємо, 18-го квітня відбудеться спільна зустріч з Morning at Lohika.
Слідкуйте за анонсами!