This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
const webpack = require('webpack'); | |
const VueLoaderPlugin = require('vue-loader/lib/plugin'); | |
module.exports = { | |
entry: { | |
hoge: './src/main/js/files/hoge', | |
vendor: ['vue', 'vuex'] | |
}, | |
output: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page import="java.util.Objects" %> | |
<%@ page import="java.util.List" %> | |
<%@ page import="java.io.IOException" %> | |
<%@ page import="java.util.function.BiConsumer" %> | |
<%@ page import="java.util.function.Predicate" %> | |
<%@ page import="java.util.function.Consumer" %> | |
<%@ page import="java.util.function.Function" %> | |
<%@ page import="java.util.Arrays" %> | |
<%@ page contentType="text/html;charset=UTF-8" language="java" %> | |
<html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page import="java.util.stream.Stream" %> | |
<%@ page import="java.util.Objects" %> | |
<%@ page import="java.util.List" %> | |
<%@ page import="java.io.IOException" %> | |
<%@ page import="java.util.function.BiConsumer" %> | |
<%@ page contentType="text/html;charset=UTF-8" language="java" %> | |
<html> | |
<head> | |
<title>真・SPA</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.sennnuri.core.domain; | |
import com.fasterxml.jackson.annotation.JsonAutoDetect; | |
import com.sennnuri.authentication.domain.User; | |
import lombok.AllArgsConstructor; | |
import lombok.Data; | |
import lombok.NoArgsConstructor; | |
import java.time.LocalDateTime; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.demo; | |
import org.seasar.doma.jdbc.Result; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.ConfigurableApplicationContext; | |
@SpringBootApplication | |
public class DemoApplication { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main extends java.util.HashMap<String, Integer> { | |
public static void main(String[] args) throws Exception { | |
if (new Main() == null) {} | |
} | |
Main() throws Exception { | |
if(put("i", 0) == null) {} | |
while (get("i") < 100) { | |
if(put("i", get("i") + 1) == null) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main extends java.util.HashMap<String, Integer> { | |
public static void main(String[] args) throws Exception { | |
if (new Main() == null) {} | |
} | |
Main() throws Exception { | |
if(put("i", 0) == null) {} | |
while (get("i") < 100) { | |
if(put("i", get("i") + 1) == null) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import net.orekyuu.workbench.infra.ProjectName; | |
import net.orekyuu.workbench.project.domain.model.Project; | |
import net.orekyuu.workbench.project.usecase.ProjectUsecase; | |
import net.orekyuu.workbench.service.exceptions.ProjectNotFoundException; | |
import org.eclipse.jgit.api.errors.GitAPIException; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.ui.Model; | |
import org.springframework.web.bind.annotation.ControllerAdvice; | |
import org.springframework.web.bind.annotation.GetMapping; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.orekyuu.sushi; | |
import java.awt.*; | |
public class Sushi { | |
private final Image image; | |
private int x; | |
private int y = 0; | |
private int size = 20; | |
private int laneWidth; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.GetMapping; | |
import org.springframework.web.bind.annotation.ResponseBody; | |
@SpringBootApplication | |
@Controller |